@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root{
    /* COLORS */
    --background-color: rgb(39, 20, 85); 
    --white: rgb(242, 242, 242) ;
    --shadow-white: rgb(107, 104, 104); 
}
*
{
    margin:0; padding:0; 
    box-sizing: border-box;
    text-decoration: none;
    list-style: none; 
}
body{
    font-family: 'Poppins';
    height: 100vh;
	
}
/* TEXT */
.text {
    padding: 50px;
}
/* FOOTER */
.footer{
    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--background-color);
}
.wrap{
    display: flex;
    flex-wrap: wrap;
}
.footer-container{
    position: relative; 
    width: 20%;
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.logo{
    font-size: 1.7em;
    color: var(--white);
}
.footer-container h3{
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
}
.footer-container ul li{
    margin: 5px;
}
.footer-container ul li a{
    font-size: 1em;
    color: var(--white);
}
.footer-container ul li a:hover{
    border-bottom: 2px solid var(--white);
    transition: all .3s;
}

/* RESPONSIVE */
@media screen and (max-width:950px) {
    .footer-container{
        width: 50%; 
        padding: 30px 10px;
    }
}
@media screen and (max-width:500px) {
    .footer-container{
        width: 100%; 
        padding: 25px 10px;
    }
}