/* Reset default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures it stays behind other elements */
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Scales the video to cover the entire viewport */
    position: absolute;
    top: 0;
    left: 0;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensures it's on top of the video */
    text-align: center;
}

img {
    max-width: 300px; /* Adjust as needed */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Ensures the logo is centered */
}

.list-container {
    margin-top: 20px;
}

.list-item {
    margin-bottom: 20px;
    text-align: center; /* Centers the title and link */
}

.list-item img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 10px auto; /* Centers the image */
}

.list-item a {
    color: white;
    text-decoration: underline;
}

.list-item a:hover {
    text-decoration: none;
}
