body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #333;
    background-repeat: repeat;
    background-image: url(repeat.png);
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-end;
}


.background-image {
    background-image: url('background.jpg');
    /* Replace with your background image path */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 150%;
    /* Start with a zoomed in size */
    position: relative;
    height: 60vh;
    /* Adjust the height as needed */
    border-top: thick solid orange;
    border-bottom: thick solid orange;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Ensure the background doesn't spill out of the container */
    animation: panImage 20s infinite alternate ease-in-out;
    /* Apply the animation */
}

@keyframes panImage {
    0% {
        background-position: left 10% bottom 10%;
        /* Raised slightly from the bottom left */
    }

    100% {
        background-position: right top;
    }
}

.centered-logo {
    max-width: 50%;
    height: auto;
    z-index: 2;
    position: relative;
    /* Ensure the logo is positioned above the background */
}

.link-container {
    text-align: center;
    margin-top: 20px;
    /* Space between the logo and the link image */
}

.link-container .link-image {
    height: auto;
    cursor: pointer;
    /* Change cursor on hover */
    transition: transform 0.3s ease;
    /* Smooth transition for scaling on hover */
    z-index: 2;
    position: relative;
    /* Ensure the link image is positioned above the background */
}

.link-container .link-image:hover {
    transform: scale(1.1);
    /* Slightly enlarge the link image on hover */
}


.message-container {
    text-align: center;
    margin-top: 20px;
    margin: auto;
    /* Floats the div 3/4 down the page */
    background: rgba(0, 0, 0, 0.8);
    /* Slight transparency */
    padding: 20px 30px;
    border-radius: 10px;
    width: 50%;
    color: white;
    font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.message-container h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: orange;
    /* Golden accent for the header */
}

.message-container p {
    font-size: 1rem;
    line-height: 1.6;
}

/* General footer styling */
.social-footer {
    background-color: #333; /* Dark background color */
    color: #fff; /* Text color */
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

/* Social icons container */
.social-footer-icons {
    display: flex;
    justify-content: center;
}

/* Unordered list styling */
.social-footer-icons .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem; /* Space between icons */
}

/* Individual list items */
.social-footer-icons .menu li {
    display: inline-block;
}

/* Anchor tags and icon styles */
.social-footer-icons .menu li a {
    color: #fff; /* Icon color */
    text-decoration: none;
    font-size: 1.5rem; /* Icon size */
    transition: color 0.3s ease;
}

/* Hover effect for icons */
.social-footer-icons .menu li a:hover {
    color: #f39c12; /* Hover color */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .social-footer-icons .menu {
        gap: 0.75rem; /* Reduce spacing for smaller devices */
    }

    .social-footer-icons .menu li a {
        font-size: 1.25rem; /* Adjust icon size for smaller screens */
    }
}

/* Media queries for responsiveness (same as before) */
@media (max-width: 768px) {
    /* ... */
}

@media (max-width: 480px) {
    /* ... */
}