@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Press+Start+2P&display=swap');

:root {
    --bg-main: #99ee95;
    --ft-main: #0b1157;
}

* {
    font-family: "Press Start 2P";
    color: var(--ft-main);
    background-color: var(--bg-main);

}

.hide {
    display: none !important;
}

#gameContainer,
#gameIntro,
#gameOutro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: .75em;
    margin-top: 25px;
}

#gameIntro {
    margin-top: 300px;
}

img {
    justify-content: center;
    height: 200px;
    width: 200px;
}

.button {
    background-color: var(--ft-main);
    color: var(--bg-main);
    margin: 5px;
    padding: 5px;
}

@media only screen and (max-width: 600px) {
    #gameIntro {
        margin-top: 150px;
    }
    img {
        justify-content: center;
        height: 200px;
        width: 200px;
    }
}