/* Ensure the entire body is at least 100% of the viewport height */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}

/* The main content area will grow and take up the remaining space */
.footer-fill {
    flex: 1;
}

/* Footer styling remains the same */
footer {
    margin-top: 75px;
    padding: 20px 0;
    background-color: black;
}

/* Center the content inside the footer */
.footer-content {
    margin: 0 auto;
    text-align: center;
    color: white;
}

/* Social links list */
.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-left: -38px;
    margin-bottom: 10px;
}

/* Individual social link item */
.social-links li {
    display: inline-block;
    color: orange;
}

/* Links inside the social links */
.social-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Hover effect for social links */
.social-links a:hover {
    color: orange;
}
