/* LAYOUT */
html,
body {
    height: 100%;
    margin: 0;
    background-color: black;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

.container {
    display: flex;
    justify-content: center;
}

.content {
    min-height: 100vh;
    max-width: 40rem;
    display: flex;
    flex-direction: column;

    background-color: #02081b;
}

header {
    text-align: center;
    margin-bottom: 1rem;
}

main {
    flex: 1;
    text-align: center;
}

footer {
    text-align: center;
    padding: 1rem;
    padding-top: 4rem;
    margin-top: auto;
}

/* GENERAL STYLE */

p {
    font-size: 2rem;

    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
    font-size: 4rem;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}

h2 {
    font-size: 3rem;
}

/* SPECIFIC STYLE */

.header-title {
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    height: 16rem;
    background: linear-gradient(to bottom, #0d38bc, #02081b);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-size: 6rem;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;

    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    text-shadow: 3px 3px 0 black;
}

main h1 {
    margin-bottom: 0;

    text-shadow: 3px 3px 0 black;
}

.showcase {
    margin-bottom: 4rem;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.game-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background-size: cover;
    /* or contain */
    background-repeat: no-repeat;
    background-position: center;
}

.game-container h2 {
    margin-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    text-transform: uppercase;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "YTLC" 500;

    color: #e2c91e;
    text-shadow: 3px 3px 0 #363008;
    background-color: #02081baa;
}

.game-container p {
    margin-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    text-shadow: 2px 2px 0 black;
    background-color: #02081baa;
}

footer p {
    font-size: 1rem;
    color: #666666;
}

/* FONTS */

.nunito-sans {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "YTLC" 500;
}

.instrument-serif-regular {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.instrument-serif-regular-italic {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}