        @import url("https://fonts.googleapis.com/css?family=Lato:400,300,400italic,500,500italic");

        @keyframes progressbar {
            0% {
                width: 0;
                opacity: 0;
            }
            1% {
                opacity: 1;
            }
            100% {
                width: 100%;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: #fff;
            font-family: Lato, sans-serif;
            font-weight: 400;
            padding: 50px 60px;
            transition: opacity 500ms ease;
            opacity: 0;

            background: rgb(89,89,89);
            background: radial-gradient(circle, rgba(89,89,89,1) 0%, rgba(51,51,51,1) 35%, rgba(0,0,0,1) 100%);
        }

        h1 {
            font-size: 36px;
            line-height: 1.32;
        }
        h2 {
            font-size: 36px;
        }

        p {
            line-height: 1.5;
            font-size: 24px;
        }

        h1, .logo, p {
            margin-bottom: 30px;
        }

        a {
            color: #d3d9d0;
        }

        .right {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            height: 100vh;
            position: fixed;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #3b5998;

            padding: 10vw;
            padding-right: 8.5vw;
        }

        .profile {
            margin-top: 75px;
        }
        .mb-0 {
            margin-bottom: 0;
        }

        .avatar {
            border-radius: 50%;
            height: 150px;
            display: inline-block;
            float: left;
        }
        .ib {
            display: inline-block;
        }
        .p-cont {
            float: left;
            margin-top: 32px;
            margin-left: 30px;
        }

        .grey {
            color: #dadada;
        }

        #fmark {
            position: fixed;
            bottom: 20px;
            right: 20px;
            transform: scale(0.15);
            transform-origin: 100% 100%;
            opacity: 0.75;
        }

        .rating {
            margin-bottom: 20px;
        }

        .progress-bar {
            display: block;
            background: #f0f0f0;
            height: 3px;
            border: 1px solid #e3e3e3;
            border-radius: 2px;
            /*border-top-color: #ccc;*/
            margin: 0;
        }

        .progressbar-animate {
            animation: progressbar 15s normal forwards linear;
        }

        .bottom {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0;
        }

        .fadeItem {
            transition: all 750ms ease;
            opacity: 0;
        }

        body.in, .fadeItem.in {
            opacity: 1;
        }

        .neverhide {
            opacity: 1 !important;
        }

        .hidden {
            display: none !important;
            opacity: 0 !important;
        }
