/* Current CSS */

/* Body setup */
body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* Aligns content from the top */
    align-items: center;  /* Center the content horizontally */
    height: 100%;  /* Allow body to take full height */
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #040707;
    text-align: center;  /* Ensures text content is centered */
}

/* Logo styles */
.logo {
    max-width: 100%;
    max-height: 100%;
    margin-top: 20px; /* Space from the top */
    margin-bottom: 20px;
}

/* Video container setup */
.vimeo-embed {
    display: flex;
    flex-direction: column; /* Stack the videos vertically */
    justify-content: center;
    align-items: center; /* Center the videos horizontally */
    gap: 30px;  /* Space between the videos */
    width: 100%;  /* Make sure the container is full width */
    flex-grow: 1;  /* Allow video container to take remaining space */
}

/* Styling the iframes */
iframe {
    width: 920px;
    height: 515px;
}

/* Mobile-specific styles */
@media (max-width: 600px) {
    iframe {
        width: 100%;
        max-width: 400px;  /* Limit the video width to 400px on mobile */
        height: 225px;  /* Adjust height on smaller screens */
    }
}


/* Footer Setup */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #040707;
    color: #fff;
    width: 100%;
    position: relative;
    bottom: 0;
}

/* Footer Logo styles */
.footer-logo {
    max-width: 80%;  /* Make the footer logo smaller */
    max-height: 160px;
    margin-bottom: 10px;
}

/* Copyright text styles */
.copyright {
    font-size: 0.9em;
    color: #fff;
}
