33 lines
405 B
CSS
33 lines
405 B
CSS
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 3rem;
|
|
padding: 1.6rem;
|
|
background-color: var(--primary-1);
|
|
color: white;
|
|
}
|
|
|
|
footer section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
footer h3 {
|
|
font-size: 1rem;
|
|
margin: 0;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
footer img {
|
|
height: 10rem;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
footer img {
|
|
display: none;
|
|
}
|
|
footer {
|
|
gap: 1.45rem;
|
|
}
|
|
}
|