/* Ensure the page wrapper takes up the full height */
.page-wrapper, .home-wrapper {
    min-height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes footer to the bottom */
}

/* Center the links */
.link-container {
    text-align: center;
    margin-top: 20px;
}

.link {
    font-size: 18px;
    background-color: #222;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.link a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.link a:hover {
    background-color: #f1c40f;
    color: #333;
}

/* Footer styling */
.site-footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: auto; /* Ensure the footer is at the bottom of the page */
}

.site-footer p {
    margin: 10px 0;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .link {
        font-size: 16px;
        display: block;
    }

    .link a {
        padding: 8px;
    }
}
