/* ---------- General ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #111;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* ---------- Header ---------- */

header {
    padding: 40px 20px 10px;
}

.logo {
    width: min(900px, 90%);
}

/* ---------- Main ---------- */

main {
    width: min(1100px, 95%);
    margin: auto;
}

h2 {
    font-size: 2rem;
    font-weight: normal;
    margin: 15px 0;
}

.tagline {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ---------- Trailer ---------- */

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;

    box-shadow:
        0 0 40px rgba(0,120,255,.25);
}

/* ---------- Button ---------- */

.button {
    display: inline-block;

    margin: 35px 0 60px;
    padding: 18px 36px;

    background: #ff8c00;
    color: white;

    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;

    border-radius: 6px;

    transition: .2s;
}

.button:hover {
    background: #ffab2d;
    transform: scale(1.05);
}
.quote {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 40px 0 10px;
    letter-spacing: 2px;
}

.tagline {
    color: #bfbfbf;
    font-size: 1.3rem;
    margin-bottom: 35px;
}
