body, html {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Hide scrollbars */
    background-color: #000; /* Black background for when video loads */
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#canvas {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will make the canvas cover the screen, cropping if necessary to maintain aspect ratio */
}

.buttons-container {
    position: fixed; /* Fixed position to stay on top of everything */
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 20px;
}

.buttons-container button {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    transition: background-color 0.2s ease;
}

.buttons-container button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
