* {
    font-family: 'Press Start 2P', cursive;
    color: white;
}

body {
    height: 100vh;
    padding: 0;
    margin: 0;
}

.background {
    background: linear-gradient(254.46deg, rgba(5, 255, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 89.64%);
    background-color: #00382E;
    animation: backgroundFade 10s;
}

.backgroundMountains {
    background: url(media/Vector-1.png), url(media/Vector-2.png);
    background-size: 100% 70%;
    height: 100vh;
    background-position: bottom;
    background-repeat: no-repeat;
    animation: fadeIn 10s ease-in-out, move 5s linear;
}

.dead {
    background-color: rgba(255, 0, 0, 0.329);
    height: 100vh;
}

.fadein {
    animation: fadeIn 5s ease-in-out;
    flex-direction: column;
}

.blink {
    animation: blink 2s infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes backgroundFade {
    0% {
        background-color: #001411;
    }
    100% {
        background-color: #00382E;
    }
}

@keyframes move {
    0% {
        background-size: 100% 0%;
    }
    100% {
        background-size: 100% 70%;
    }
}

.main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box {
    background: rgba(0, 194, 255, 0.18);
    width: 70vw;
    font-size: 2rem;
    padding: 2rem;
    border-radius: 76px;
    font-family: 'Press Start 2P', cursive;
    line-height: 1.6;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.errorText {
    color: red;
    font-size: 1.1rem;
    margin-top: 2em;
}

.biggerFont {
    font-size: 2.5rem;
}

.dead p {
    font-size: 3rem;
    text-align: center;
    padding: 2rem;
    border-radius: 76px;
    line-height: 1.6;
    width: 70%;
}

.dualButtons {
    display: flex;
    flex-direction: row;
    align-content: space-between;
    gap: 5rem;
}

input {
    border: none;
    padding: 2rem;
    width: 70%;
    background-color: #c4c4c46b;
    color: black;
    font-size: 1.2rem;
    outline: none;
}

input::placeholder {
    color: black;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    padding-left: 1em;
}

.cardBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem;
}

.cardColumn {
    width: 70vw;
    font-size: 1.5rem;
    background: rgba(0, 194, 255, 0.18);
    border-radius: 76px;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
    display: flex;
    margin-bottom: 3rem;
}

.card {
    width: 70vw;
    font-size: 1.5rem;
    background: rgba(0, 194, 255, 0.18);
    border-radius: 76px;
    align-items: center;
    padding: 4rem;
    display: flex;
    gap: 4rem;
}

.card p {
    line-height: 2;
    font-size: 1.5rem;
}

.nextContainer {
    position: relative;
    text-align: center;
    margin-top: -5vh;
}

.nextArrow {
    max-width: 20vw;
}

.charImg {
    max-width: 30vw;
    margin-top: -5vh;
}

.pixelImg {
    max-width: 20vw;
    margin-top: -5vh;
}

h1, h2, h3, button {
    font-family: 'Press Start 2P', cursive;
    text-align: center;
}

h1 {
    margin-top: 10rem;
    margin-bottom: 10rem;
    font-size: 7rem;
    color: black;
}

h2 {
    font-size: 5rem;
}

h3 {
    font-size: 2rem;
}

.centerContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

button {
    width: fit-content;
    font-size: 3rem;
    background-color: black;
    color: rgb(2, 129, 2);
    border: none;
    top: 50%;
    padding: 2rem;
}

.redText {
    color: rgb(255, 0, 0);
}

.smallText {
    font-size: 1rem;
}

.card-list {
    width: 70%;
    padding: 0;
}

.card-list li {
    background: #C4C4C4;
    list-style: none;
    height: 3vh;
    margin-top: 1.5vw;
}

/*KEEP AT BOTTOM TO KEEP FLEX FOR TOGGLE STATES*/

.page {
    display: none;
}

.page.active {
    display: flex;
    flex-direction: column;
}