@font-face {
    font-family: 'Comic Sans MS Bold';
    src: local('Comic Sans MS Bold'), local('ComicSansMS-Bold'), url('ComicSansMS-Bold.woff') format('woff');
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    overflow: hidden; /* Prevents scrollbars caused by the fixed video */
    font-family: 'Comic Sans MS Bold', 'serif', cursive;
}

.container {
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

.background {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -100;
    opacity: .2;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 8vw; /* Use viewport width for responsive font size */
    margin-bottom: 4vh; /* Use viewport height for responsive margin */
}

/* Media query for larger screens */
@media screen and (min-width: 768px) {
    h1 {
        font-size: 4rem; /* Set a maximum font size for larger screens */
    }
}
