@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Kalam:wght@300;400;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body{
    font-family: "Darker Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  
}
nav{
    height: 140px;
    width: 100%;
    background-color: transparent;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
nav img{
    height: 100px;
    user-select: none;
}
nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 23px;
    list-style: none;
}
nav a{
    text-decoration: none;
    color: black;
}
nav ul li a:hover{
    background-color: black;
    padding: 10px 20px;
    transition: 0.5s ease;
    color: white;
    border-radius: 10px;
}


footer{
    height: 200px;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 20px;
}
footer img{
    height: 100px;
}
footer ul a{
    color: white;
    text-decoration: none;
}
footer ul{
    list-style: none;
}
footer span{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 20px;
}

#fas{
    font-size: 30px;
    display: none;
}

@media screen and (max-width:830px){
    #fas{
        display: block;
        cursor: pointer;
    }
    #nav-ul {
        display: none;
        flex-direction: column;
        width: 100vw;
        position: absolute;
        top: 140px;
        left: 0;
        background-color: white;
    }

    #nav-ul li {
        text-align: center;
        margin: 10px 0;
    }

    #nav-ul li a {
        display: block;
        width: 100%;
        padding: 10px 20px;
    }

    #nav-ul.show {
        display: flex;
    }
    footer ul{
        display: none;
    }
    footer img{
        height: 70px;
    }
    footer{
        font-size: 17px;
    }
}