@charset "UTF-8";

footer {
    grid-area: footer;
    background-color: rgba(43, 42, 41, 0.63);
}
footer div {
    display: flex;
    justify-content: center;
}
footer div section {
    padding: 1rem;
    margin:3rem;
}
footer div p {
    font-size: 1.6rem;
    color: white;
}
footer div a {
    text-decoration: none;
    color: white;
}
footer div a:nth-last-child(n):hover {
    color: black;
    text-decoration: underline;
}
footer div li {
    font-size: 1.3rem;
    color: white;
}
footer div li:nth-last-child(n):hover {
    color: black;
    text-decoration: underline;
}
footer div ul {
    list-style-type: none;
}
footer .copylight {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}
@media (max-width: 662px){
    footer div {
        display: grid;
        grid-template: 
            "...  f1  f2 " 
            "...  f3  ..."/
             3rem 1fr 1fr;
    }
    footer div section {
        margin: 0;
    }
    footer div .f1 {
        grid-area: f1;
        margin-top: 3rem;
    }
    footer div .f2 {
        grid-area: f2;
        margin-top: 3rem;
    }
    footer div .f3 {
        grid-area: f3;
    }
    
}
@media (max-width: 350px){
    footer div {
        display: block;
        margin-left: 3rem;
    }
    footer div section {
        margin: 1rem;
    }
    footer div .f1 {
        margin-top: 3rem;
    }
    
}

