:root {
    --light-black: rgba(5, 5, 5, 0.8);
    --black: #050505;
    --light-grey: #bbbbbb;
    --grey: #242424;
    --white: #f1f1f1;
    --light-gold: rgba(221, 172, 96, 0.3);
    --light-gold2: rgba(221, 172, 96, 0.1);
    --gold: #ddac60;
    --gold-darker1: #9a7843;
    --gold-darker2: #584426;
    --red: #ce2b37;
    --green: #009246;
    --realgold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --light-blue: #ddac60;
    --light-blue2: #9a7843;
    --dark-blue: #2b2b2b;
}

@font-face {
    font-family: PressStart2P;
    src: url(fonts/PressStart2P-Regular.ttf);
}

/* @font-face {
    font-family: Gotham;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url(fonts/GothamBook-Regular.woff);
} */

body {
    /* font-family: 'PressStart2P'; */
    font-size: 16px;
    color: var(--white);
    background-color: var(--black);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/background.png');
    background-repeat: repeat;
    background-size: 300px;
    background-position: center center;
}

#launchScheduleButton {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 20px 20px 20px;
}

#emailForm {
    /* font-family: 'Gotham'; */
    display: none;
    position: absolute;
    background-color: var(--light-black);
    padding: 15px 30px 0 30px;
    margin: 0 auto;
    width: 450px;
    left: 0;
    right: 0;
    font-size: 12px;
}

@media (max-width: 500px) {
    #emailForm {
        width: 100%;
    }
}

.btn-fontawesome {
    font-family: 'PressStart2P';
    display: inline-flex;
    align-items: center;
    background-color: var(--light-blue);
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 12px;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px var(--dark-blue);
}

.btn-fontawesome:hover {
    background-color: var(--light-blue2);
    text-decoration: none;
    color: var(--dark-blue);
}

.btn-fontawesome:active {
    box-shadow: none;
    transform: translateY(4px);
}

.btn {
    font-size: 12px;
}

.small-text {
    font-size: 9px;
}

.small-text p {
    margin-bottom: 4px;
}

.big-text {
    font-size: 16px;
}

.card {
    height: 100%;
}

.card-gold {
    background-color: var(--gold);
    color: black;
}

.card-silver {
    background-color: var(--silver);
    color: black;
}

.card-bronze {
    background-color: var(--bronze);
    color: black;
}

.card-grey {
    background-color: #0a0a0a;
    color: var(--white);
}

.card-score {
    font-family: 'PressStart2P';
}

.motivational-message {
    text-align: center;
    font-size: 1.3em;
}

.gameWrapper {
    font-family: 'PressStart2P';
    display: flex;
    justify-content: center;
    align-items: center;
}

.gameWrapper canvas {
    max-width: 100vw;
    max-height: 98vh;
    object-fit: contain;
}