body {
    margin: 0;
    padding: 0;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column; /* Add flex-direction to stack the title and button vertically */
    justify-content: center;
    align-items: center;
    position: relative; /* Add position: relative to enable z-index */
    z-index: 1; /* Increase the z-index value to position the container on top of the video */
}

.glassy-button {
    margin-top: 20px; /* Add some margin to separate the title and button */
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(10px) opacity(70%);
    -webkit-backdrop-filter: blur(10px) opacity(50%);
}

.glassy-button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    backdrop-filter: blur(0px) opacity(100%);
    -webkit-backdrop-filter: blur(0px) opacity(100%);
}

.title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}