body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -1; /* Ensure the video is behind other content */
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set width to 100% */
    height: 100%; /* Set height to 100% */
    object-fit: fill; /* Ensure the video fits the container */
}

.text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

@media (max-width: 768px) {
    .text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 14px;
    }
}