/* footer.css */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%; /* Takes full width of the viewport */
    position: relative; /* Ensure it stays in place relative to the content */
}

footer p {
    margin: 0;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center; /* Center the social links */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}
