@charset "utf-8";

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

#initialScreen, #game, #gameOverScreen, #gameClearScreen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
}

#coinsScreen {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

#coinsScreen img {
    max-width: 180px;
    max-height: 180px
}

.cell {
    width: 100px;
    height: 100px;
    border: none;
}

#answer {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
}

#timer {
    font-size: 24px;
    margin-top: 20px;
}

#gameOverScreen, #gameClearScreen{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

@media screen and (max-width:600px){

    #game {
        padding-top: 8%;
    }

    #coinsScreen img {
        max-width: 120px;
        max-height: 120px
    }
    
}