html, body {
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
}

body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

#button1 {
    position: absolute;
    top:20px;
    left: 100px;
}

#button2 {
    position: absolute;
    bottom:120px;
    left: 220px;
}

#button3 {
    position: absolute;
    bottom:320px;
    right: 100px;
}
h1 {
    text-align: center;
    padding: 1rem;
    margin: 0;
    font-size: 2rem;
}

.logo-container {
    width: fit-content;
    margin: 0 auto;
    margin-top: 2rem;
}

.logo {
    width: 400px;
    margin: 0 auto;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100vw;
    min-height: 100vh;
    z-index: -1;
}

#video2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: calc(min(50vw, 400px));
    z-index: -1;
}

#video3 {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: calc(min(50vw, 400px));
    z-index: -1;
}

main {
    padding: 2rem;
    text-align: center;
}

.link-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.video-link-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-link {
    display: block;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.link-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    cursor: pointer;
}

.video-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
}


