    @import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;1,300&display=swap");

    html {
        height: 100%;
    }

    body {
        background-color: rgb(239, 235, 239);
        font-family: 'Work Sans', sans-serif;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .bgcolor1 {
        background-color: rgb(50, 50, 50);
    }

    .color1 {
        color: rgb(50, 50, 50);
    }

    #header {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: 95px;
    }

    #headerNav>.logo {
        position: absolute;
        left: 9.375vw;
        top: 0;
        background: url(../images/logo.png) no-repeat center center;
        width: 100px;
        height: 100px;
        text-indent: -9999px;
    }

    #headerNav>.headerMenu {
        float: right;
        margin: 43px 31px 0 0;
        color: #fff;
        list-style: none;
        padding: 0;
    }

    #headerNav .headerMenu li {
        margin: 0 0 0 10px;
        float: left;
        padding: 0;
        text-transform: uppercase;
        cursor: pointer;
        list-style: none;
    }

    .headerMenu .menu_item {
        padding: 10px;
        text-decoration: none;
        color: rgb(239, 235, 239);
        font-weight: 100;
        text-transform: uppercase;
        font-size: 14px;
    }

    .headerMenu .menu_item:hover {
        color: #fff;
    }

    .headerBottomContainer {
        position: absolute;
        left: 0;
        right: 0;
        height: 22px;
        bottom: -15px;
        white-space: nowrap;
        overflow: hidden;
    }

    .headerBottom {
        position: absolute;
        width: 885px;
        height: 22px;
        left: 0;
    }

    #menuButton {
        height: 37px;
        cursor: pointer;
        display: none;
        float: right;
        margin: 30px 20px 0 0;
    }

    .headerBottom.second {
        left: 884px;
    }

    .headerBottom.third {
        left: 1768px;
    }

    .container {
        max-width: 900px;
        margin: 170px auto 0 auto;
        flex-grow: 1;
    }

    .container .title {
        font-size: 45px;
        margin: 0;
        font-weight: 300;
    }

    /******************* HOME *******************/

    #home>.color1 {
        padding-top: 80px;
    }

    #home .subtitle {
        font-weight: 100;
        margin: 0;
        font-size: 25px;
    }

    #home .description {
        font-weight: 300;
        font-size: 18px;
        line-height: 30px;
    }

    #home>.phoneDemoContainer {
        text-align: right;
    }

    #home .phoneDemo {
        background: url("../images/phone.png") no-repeat;
        width: 270px;
        height: 572px;
        margin: 0 auto;
    }

    #home .storeImage {
        max-width: 100%;
    }

    #bestDrawings {
        margin-top: 0;
        width: 100%;
    }

    #bestDrawings>hr {
        border-color: #aaa;
    }

    #bestDrawings .itemContainer {
        text-align: center;
        margin-bottom: 25px;
    }

    #bestDrawings .itemContainer>.itemThumb {
        max-width: 100%;
        border-radius: 5px;
    }

    #bestDrawings .itemContainer>.itemTitle {
        margin: 5px 10px;
        font-size: 16px;
    }

    #bestDrawings .itemContainer>.itemSubtitle {
        margin: 5px;
        font-size: 12px;
        font-weight: 100;
    }

    /******************* PRIVACY *******************/

    #privacy>.title {
        font-size: 45px;
        margin: 0 0 20px 0;
        font-weight: 300;
    }

    #privacy>.intro {
        font-size: 15px;
        margin: 0 0 20px 0;
        font-weight: bold;
    }

    #privacy>.question {
        font-weight: bold;
        margin-top: 30px;
        font-size: 15px;
    }

    #privacy>.answer {
        font-size: 15px;
        margin-bottom: 15px;
    }

    #privacy>.answer>ul {
        margin-top: 10px;
        font-size: 13px;
    }

    /******************* CONTACT *******************/

    #contact>.info {
        font-weight: bold;
        margin-top: 30px;
        font-size: 15px;
    }

    #contact>.e {
        margin-top: 5px;
    }

    /******************* USER *******************/

    #user {
        text-align: center;
    }

    #user>.image {
        border-radius: 5px;
    }

    #user>.name {
        padding: 7px 0 0 0;
        font-size: 16px;
        max-width: 150px;
        text-align: center;
        margin: 0 auto;
    }

    #user>.oeils {
        font-size: 10px;
        opacity: 0.6;
        margin:2px;
    }

    #user>.button {
        color: #fff;
        padding: 7px 14px;
        border-radius: 3px;
        margin-top: 10px;
        display: inline-block;
        font-size: 13px;
        cursor: pointer;
    }

    /******************* FOOTER *******************/

    #footer {
        color: #fff;
        text-align: center;
        margin-top: 30px;
        padding: 30px;
    }

    #footer>.imgLinkContainer {
        display: inline-block;
        width: 37px;
        height: 35px;
    }

    #footer>.text {
        font-weight: 100;
        font-size: 13px;
    }

    #footer>.text>a {
        color: #fff;
        border: 0px solid #999;
        border-bottom-width: 1px;
        text-decoration: none;
    }

    #footer .imgLink {
        width: 17px;
        height: 17px;
    }

    @media (max-width: 650px) {
        #menuButton {
            display: block;
        }

        #headerNav>.logo {
            left: 50%;
            margin-left: -50px;
        }

        #headerNav>.headerMenu {
            margin: 0 auto;
            z-index: 20;
            position: relative;
            left: 0;
            top: 25px;
            height: 0;
            width: 100%;
            overflow: hidden;
            padding: 0 5px;
            transition: height 0.3s ease-in-out;
        }

        #menuButtonCloser {
            display: none;
        }

        #headerNav.open #menuButtonCloser {
            display: block;
        }

        #headerNav.open #menuButtonOpener {
            display: none;
        }

        #headerNav.open>.headerMenu {
            height: 40px;
        }

        #headerNav .headerMenu li {
            margin-bottom: 10px;
        }

        .headerMenu .menu_item {
            font-size: 13px
        }

        .container {
            margin-top: 150px;
        }

        #home>.color1 {
            padding-top: 0;
        }

        #home>.phoneDemoContainer {
            text-align: center;
        }

        #home .storeImage {
            margin-bottom: 15px;
        }
    }