challenge-landing-page-Ana-.../styles/footer.css

54 lines
917 B
CSS

footer{
width: 100%;
height: 128px;
bottom: 0;
background: #000000;
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
footer .social-media{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
width: 104px;
}
footer span{
font-weight: 400;
font-size: 10px;
line-height: 12px;
text-transform: uppercase;
color: #BDBDBD;
}
@media screen and (max-width: 1025px){
footer span{
width: 261px;
text-align: center;
}
}
@media screen and (min-width: 2500px){
footer{
height: 256px;
}
footer .social-media{
margin-bottom: 32px;
width: 208px;
}
footer .social-media a img{
width: 48px;
}
footer span{
font-size: 20px;
line-height: 24px;
}
}