@font-face {
    font-family: "FranxurterTotallyMedium";
    src: url(../fonts/FranxurterTotallyMedium-gxwjp.ttf);
}

body {
    background-color: lightcyan;
    background-image: url(../images/gradient-pastel-sky-background.jpg);
    width: 100vw;
    height: 100vh;
    font-family: "FranxurterTotallyMedium";
    font-size: 30px;
}

#imageTitle {
    display: block;
    width: 25%;
    margin: 120px auto;
}

#instructions.visible #imageTitle {
    display: block;
}

#board {
    height: 100%;
    width: 100%;
}

#player {
    background: url(../images/cone.png);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.1s;
}

.scoop {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.1s;
}

.fruit {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.1s;
}

#score {
    margin: 50px;
    margin-top: 85px;
    position: absolute;
    color: rgb(36, 36, 36);
}

#level {
    margin: 50px;
    position: absolute;
    color: rgb(126, 22, 82);
    font-style: italic;
}

#instructions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: inline-block;
    justify-content: middle;
    color: rgb(126, 22, 82);
    background-color: pink;
    padding: 30px;
    border: 3px solid rgb(126, 22, 82);
    border-radius: 5px;
}

#playButton {
    font-family: "FranxurterTotallyMedium";
    background-color: lightblue;
    border-radius: 15px;
    color: rgb(36, 36, 36);
    font-size: 25px;
}

#instructionsParagraph {
    font-family: "FranxurterTotallyMedium";
    color: rgb(36, 36, 36);
    font-size: 20px;
    text-align: center;
    margin: 10px;
    align-items: center;
    vertical-align: middle;
}

#gameOver {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(126, 22, 82);
    background-color: pink;
    padding: 30px;
    border: 3px solid rgb(126, 22, 82);
    border-radius: 5px;
}

#restartButton {
    font-family: "FranxurterTotallyMedium";
    background-color: lightblue;
    border-radius: 15px;
    font-size: 18px;
    color: rgb(36, 36, 36);
}

.snowflake {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.1s;
}