- 📅 2023-04-29T12:24:03.176Z
- 👁️ 170 katselukertaa
- 🔓 Julkinen
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.footer {
display: flex;
flex-direction: row;
align-items: center;
text-align: left;
background-color: var(--darker-color);
padding: 30px;
margin-top: auto; /* Set the top margin to auto to push the footer to the bottom */
border-radius: 20px;
justify-content: space-around;
height: 10rem; /* Set a fixed height for the footer */
}
.footer-content {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
}
.footer-logo {
width: 200px;
height: 200px;
}
.footer-content-left,
.footer-content-right {
width: 200px;
}
.footer-content li a {
text-decoration: underline;
color: var(--text-color);
}
.footer-content li {
margin-bottom: 10px;
}
.footer-content-right a {
text-decoration: none;
color: var(--text-color);
font-size: 2rem;
margin-right: 2rem;
}
.footer-contact-list {
list-style: none;
padding: 0;
margin: 0;
}
.footer-badges {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 1rem;
width: 5rem;
height: 5rem;
}