/* footer.css */
.footer {
background-color: white;
color: black;
text-align: center;
padding: 20px;
font-family: Arial, sans-serif;
}

.footer .title {
font-size: 24px;
margin-bottom: 10px;
}

.social-icons {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
margin-bottom: 20px;
}

.social-icons li {
margin: 0 10px;
}

.social-icons a {
text-decoration: none;
color: black;
}

.links {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}

.links a {
text-decoration: none;
color: black;
}

@media screen and (max-width: 600px) {
.footer {
padding: 10px;
}
.footer .title {
font-size: 20px;
}
.social-icons li {
margin: 0 5px;
}
.links {
flex-direction: column;
align-items: center;
}
.links a {
margin-bottom: 5px;
}
}
