@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Zen Kurenaido', sans-serif;
}
body{
    background-color: #f0e0e0;
    color: #222;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
nav{
    position: fixed;
    height: 15vh;
    width: 100vw;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}
nav p{
    color: #ff9800;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 1rem;
}
nav ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
}
nav li a{
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 1rem;
    margin: 0 1rem;
    padding: 1rem 1rem;
}
nav a:hover{
    background: #ff9800;
    color: #000;
}
nav a.active{
    background: #ff9800;
    color: #000;
}
nav #menubar{
    color: #ff9800;
    font-size: 2rem;
    margin: 0 2vw;
    display: none;
    cursor: pointer;
}
nav #click{
    display: none;
}
.footer{
    height: 15vh;
    background-color: #000;
    width: 100%;
}
.footer ul{
    max-width: 90%;
    margin: 3vh auto;
    list-style: none;
    text-align: center;
}
.footer ul li{
    display: inline-block;
    margin-right: 1rem;
    background-color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    text-align: center;
}
.footer ul a{
    color: #000;
    text-decoration: none;
}
.footer ul li:hover{
    background-color: #ff9800;
}
.footer ul a:hover{
    color: #fff;
}
@media (max-width: 1050px){
    nav ul{
        display: block;
        align-items: center;
        position: fixed;
        margin-top: 15vh;
        top: 0;
        left: -100%;
        background-color: #000;
        height: 100vh;
        width: 100%;
        transition: all 0.3s ease;
        z-index:4;
    } 
    nav ul li{
        margin: 5vh 0;
        text-align: center;
    }
    nav ul li a{
        display: block;
        font-size: 1.5rem;
        font-weight: 600;
    }
    nav li a:hover,
    nav li a.active{ 
        background-color: #000;
        color: #ff9800;
    }
    nav #menubar{
        display: inline;
    }
    #click:checked ~ul{
        left: 0%;
    }
    .footer ul{
        width: 70%;
        margin: 3vh auto;
    }
}
