

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;1,700&display=swap');





footer{
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    width: 100%;
    color: #fff;
}

.footer-link{
    text-decoration: 0;
}

#footer_content{
    background-color: #171717;
    display: flex;
    flex-wrap: wrap;
  justify-content: space-between;
    padding: 3rem 3.5rem;
}

#footer_contents h1{
    margin-bottom: 0.75rem;
}

#footer_social_media{
    display: flex;
    margin-top: 1.5rem;
    justify-content: space-between
    
}

#footer_social_media .footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.4s;
    
}

#footer_social_media .footer-link i{
    font-size:1.25rem;
}

#footer_social_media .footer-link:hover{
    opacity: 0.8;
}

#instagram{
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#facebook{
    background-color: #4267b3;
}

#youtube{
    background-color: red;
}

.footer-list{
    display: flex;
    flex-direction: column;
    list-style: none; 
}

.footer-list .footer-link {
    color: #a8a29e;
    transition: all 0.4s;
}

.footer-list .footer-link:hover {
    color: #7f37c9;
}

#footer_subscribe{
    display: flex;
    flex-direction: column;
    
}

#footer_subscribe p{
     color: #a8a29e;
}

#footer_copyright{
    
    display: flex;
    justify-content: center;
    background-color: DarkOrange;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 100;
}

@media screen and (max-width: 768px){
    #footer_content{
        display: block;
        flex-direction: row;
    }
}





