body {
    margin: 0;
    background: black;
    color:white;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100vh;
    padding-top: 50px;
}

h1 {
    font-size: 52px;
    letter-spacing: 8px;
    margin: 0;
}

.welcome {
    position: fixed;
    top: 84%;
    left: 50%;
    margin: 0;
    font-size: 10px;
    letter-spacing: 9px;
    text-align: center;
    opacity: 0.9;
    transform: translateX(calc(-50% + 10px));
}


    
.logo {
    width: 220px;
    height: auto;
    margin-bottom: 50px;
    position: fixed;
    top: 24%;
    left: 50%;
    transform: translateX(-50%);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.play-button {
    position: fixed;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    color: white;
    background: transparent;
    cursor: pointer;
    z-index: 100;
}
.play-icon {
    display: block;
    width: 26px;
    height: 26px;
    fill: currentColor;
}
.video-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 200;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.thank-you {
    position: fixed;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 9px;
    text-align: center;
    opacity: 0.9;
    cursor: default;
    z-index: 100;
}
