@font-face {
    font-family: BungeeShade;
    src: url("BungeeShade-Regular.ttf");
}

* {
    font-family: BungeeShade, serif;
    overflow: hidden;
}

body {
    background: #0e0e0e;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#secret {
    color: white;
    font-size: 5rem;
    text-align: center;
    font-weight: bold;
}

.video-container {
    position: relative;
    width: 100%;
}

video {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 20px);
    display: block;
}

/* Play Button Styling */
#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 40px;
    font-size: 1.5rem;
    background: none;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

#playButton:hover {
    background: rgb(215 15 207 / 51%);
}
