/* General */
body {
    background-color: rgb(142, 191, 255);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: auto;
}

.screen {
    position: absolute;
}

.button {
    position: absolute;
    background-color:lightskyblue;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 26px;
    border: 2px darkslateblue solid;
    width: 22%;
    height: 7%;
    top: 79%;
    cursor: pointer;
}

.button:hover {
    background-color: cornflowerblue;
}

/* Start screen */
#start {
    left: 22%;
}

#how-to-play {
    left: 56%;
}

/* How to play screen */
#how-to-play-screen {
    display: none;
}

#back {
    left: 39%;
}

/* Game over screen */
#game-over-screen {
    display: none;
}

#back-to-menu {
    left: 38%;
    
}

#score {
    position: absolute;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 60px;
    top: 53%;
    left: 47%;
}

#credits {
    position: absolute;
    bottom: 1%;
}