
footer{
    padding: 6px;
}

@media only screen and (min-width: 720px) {
    footer{
        background:rgb(61, 61, 61);
        color:rgb(212, 197, 197);
        padding: 16px 35px;
        border-radius: 40px 40px 0 0;
    }
    
    footer a{
        color:aqua;
        transition:0.3s;
    }
    
    footer a:hover,footer a:focus{
        color:aquamarine;
        font-weight:700;
    }
}