

*{
    padding: 0;
    margin: 0;
}
body, html{
    height: 100%;
}

.navbar{
    position: fixed;
    width: 100%;
    background-color: #040404;
    height: 55px;
    align-content:center;
    z-index: 2;
}

.hamburger{
    background: white;
    display: block;
    height: 4px;
    width: 33px;
    border-radius: 2px;
    margin-bottom: 5px;
    
}
#menu-button{
    position: absolute; top: 15px; left: 10px;
    width: 33px;
    height: 33px;
    opacity: 0;
    z-index: 4;
    cursor: pointer;
}
#menu-button:checked ~.menu{
    display: block;
}
#hamburger-icon{
    cursor: pointer;
    display: block;
    margin-top: 0px;
    position: absolute; top: 15px; left: 10px;
}

.menu{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: none;
    justify-content: space-evenly;
    width: 40%;
    background-color: black;
    padding-top: 55px;
    li{
        flex-basis: 34%;
        list-style-type: none;
        text-align: center;
        padding-top: 12px;
        height: 40px;
    }
    
    a{
        
        color: white;
        text-decoration: none;
        font-size: large;
        font-size: 120%;

    }
    a:hover{
        color: rgb(179, 145, 24);

    }
}

#nav-logo{
    width: 40px;
    height: 40px;
    padding-left: 10%;
    display: none;
}
    



footer{
    background-color: black;
    position:relative; bottom: 0;
    color: white;
    text-align: center;
    width: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-top: 10px;
}

.social {
    width: 25px;
    border: none;
  }

ul{
    font-family: nunito;
}

.socials{
    margin-top: 10px;
}
@media (max-width: 780px){
    #nav-logo{
        width: 40px;
        height: 40px;
        padding-left: 10px;
    }
}


@media (min-width: 920px){

    .hamburger{
        display:none;
    }
    .menu{
        display: flex;
        padding-top: 0px;
    }
    #menu-button:checked ~.menu{
        display: flex;
    }

    #nav-logo{
        display: block;
    }

    
}