/*Proprietés de base*/
*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #FFF4CF;
    font-family: 'Anek Devanagari', sans-serif;
    font-family: 'Wendy One', sans-serif;
}

header{
    background-color: #FFB200;
    width: 100vw;
    position: fixed;
    top: 0;
}

header nav{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}


.logo{
    width: 35%;
    text-align: center;
    padding: 20px 0;
}

.logo a{
    font-size: 2em;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #277BC0;
}

.links{
    width: 65%;
    text-align: center;
    padding: 20px 0;
}

.links a{
    font-size: 2em;
    text-decoration: none;
    padding: 0 30px;
    text-transform: uppercase;
    color: #277BC0;
}  

.menu-h{
    display: none;
    width: 65px; 
    margin-right: 70px;
}

footer{
    position: relative;
    bottom: 0;
    background-color: #FFB200;
    width: 100%;
    text-align: center;
    color: #277BC0;
}

@media screen and (max-width:900px) {

    .logo{
        width: 50%;
    }

    .logo a{
        font-size: 1.5em;
    }

    .menu-h{
        display: block;
    }

    .links{
        position: absolute;
        top: 0;
        left: 0;
        margin-left: -1000px;
        display: flex;
        flex-direction: column;
        background-color: rgba(225, 225, 225, 0.9);
        backdrop-filter: blur(50px);
        height: 100vh;
        transition: all 0.5s;
    }

    .mobile-menu{
        width: 100%;
        margin: 61px 0;
    }

    .links a{
        padding-bottom: 50px;
    }
    footer{
        font-size: 0.8em;
    }
    
}

@media screen and (max-width:600px) {
    
    .logo{
        width: 50%;
    }
    .logo a{
        font-size: 1.2em;
    }
    .menu-h{
        width: 31px;
        height: 40px;
        margin: 10px 20px 0 0;
    }
    footer{
        font-size: 0.5em;
    }

}


@media screen and (max-width:300px){
    .menu-h{
        width: 34px;
        padding: 10px;
        margin: 0;
    }
    .logo a{
        font-size: 1em;
    }
    .mobile-menu{
        margin: 57px 0;
    }
}