#footer{
    width: 100%;
    height: 150px;
    background: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer-nav{
    width: 70%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}
#footer-nav a{
    color: white;
}
#footer-nav a:hover{
    text-decoration: underline;
}

@media only screen and (max-width: 600px){
    #footer{
        height: 500px;
        justify-content: center;
    }
    #footer-nav{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 20px;
    }

}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 1200px){
    #footer{
        height: 500px;
        justify-content: center;
    }
    #footer-nav{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 20px;
    }
}
