@media only screen and (max-width: 1000px){
    .footer{
        width: 100%;
        height: auto;
        background-color: var(--grey);
        padding: 80px 0px;
    }
    
    .footer h1{
        font-family: lemon-milk;
        font-weight: bold;
        font-style: normal;
        font-size: 18px;
        color: var(--white);
        text-align: center;
        margin: 20px 40px;
    }
    
    .footer .social-media{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .footer .social-media a{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        color: var(--white);
        text-decoration: none;
        margin: 0px 20px;
        opacity: 0.8;
        transition: 0.3s;
    }
    
    .footer .social-media a:hover{
        opacity: 0.5;
    }
    
    .footer .social-media a .fab{
        font-size: 22px;
        margin: 0px 5px;
    }
    
    .footer .social-media a h2{
        font-family: montserrat;
        font-weight: normal;
        font-style: normal;
        font-size: 15px;
    }
}

@media only screen and (min-width: 1000px){
    .footer{
        width: 100%;
        height: auto;
        background-color: var(--grey);
        padding: 80px 0px;
    }
    
    .footer h1{
        font-family: lemon-milk;
        font-weight: bold;
        font-style: normal;
        font-size: 25px;
        color: var(--white);
        text-align: center;
    }
    
    .footer .social-media{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer .social-media a{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        color: var(--white);
        text-decoration: none;
        margin: 0px 20px;
        opacity: 0.8;
        transition: 0.3s;
    }
    
    .footer .social-media a:hover{
        opacity: 0.5;
    }
    
    .footer .social-media a .fab{
        font-size: 30px;
        margin: 0px 5px;
    }
    
    .footer .social-media a h2{
        font-family: montserrat;
        font-weight: normal;
        font-style: normal;
        font-size: 18px;
    }
}
