<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-container {
    position: relative;
    height: calc(100vh - 70px);
    margin-top: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; /* Ensures the video fits the viewport width */
    height: auto; /* Maintains aspect ratio */
    min-height: 100%; /* Covers the container height */
    min-width: 100%; /* Covers the container width */
    object-fit: cover; /* Ensures the video scales nicely */
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
    z-index: 10;
    font-size: 1.5rem;
    padding: 0 10px;
}

.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    max-width: 80%;
    max-height: 80%;
}

.mute-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
}

.mute-button:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .center-text {
        font-size: 1.25rem;
    }

    .mute-button {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .center-text {
        font-size: 1rem;
    }

    .mute-button {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .video-container video {
        height: 100vh; /* Ensures proper scaling on smaller screens */
        width: auto;
    }
}

@media (max-width: 480px) {
    .center-text {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .center-image {
        max-width: 90%;
        max-height: 90%;
    }

    .mute-button {
        padding: 5px 8px;
        font-size: 0.7rem;
    }

    .video-container video {
        height: auto;
        width: 100%; /* Ensures the video scales to the screen width */
    }
}
</pre></body></html>