body {
    margin: 0; 
    padding: 0;
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column;
    height: 100vh; 
    font-family: 'Bubblegum Sans', sans-serif; 
    background-color: #d2cece;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

#video-player {
    height: 40vh;
    width: calc(1.78 * 40vh);
    max-width: 90%;
    border-radius: 8px;
    background: #000000;
    padding: 2px;
}

#siteTitle {
    font: bold 5vw 'Roboto', sans-serif;
    color: #333; /* Solid dark color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


@media (max-width: 768px) {
    #video-player {
        height: 30vh;
        width: calc(1.78 * 30vh);
    }

    #siteTitle {
        font-size: 8vw;
    }

    .center {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #video-player {
        height: 25vh;
        width: calc(1.78 * 25vh);
    }

    #siteTitle {
        font-size: 10vw;
    }
}
