body {
    margin: 0;
    overflow: hidden; /* Hide scroll bars during video playback */
    background-color: #000;
}

#introVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Puts video behind other content */
    background-size: cover;
}

#skipButton {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    z-index: 10; /* Ensures button is clickable above the video */
    border-radius: 5px;
}

#skipButton:hover {
    background-color: rgba(0, 0, 0, 0.8);
}