@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    background-image: url('../media/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: white;
    font-family: 'VT323', monospace;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dark overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.logo {
    width: min(700px, 90vw);
    margin-top: 20px;
    image-rendering: pixelated;
}

.content {
    width: min(800px, 90vw);
    text-align: center;
    background: rgba(0, 0, 0, 0.65);
    padding: 30px;
    margin-top: 25px;

    backdrop-filter: blur(4px);
}

.title {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.description {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.countdown {
    font-size: 4rem;
    margin: 20px 0;
    color: #ffd84d;

    text-shadow:
        0 0 10px rgba(255,216,77,0.7),
        0 0 20px rgba(255,216,77,0.4);
}

.credits {
    margin-top: 30px;
    font-size: 1.3rem;
    opacity: 0.8;
}

.credits h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.credits p {
    margin: 4px 0;
}


.video-section {
    margin-top: 40px;
}

.video-section h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.video-container {
    position: relative;
    width: 500px;
    max-width: 800px;
    aspect-ratio: 16 / 9;

    margin: 0 auto; /* centers it */

    border: 2px solid rgba(255,255,255,0.15);
    overflow: hidden;
}


.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}