html,
body {
    background-color: #73c8a9;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-image: linear-gradient(to right, #73c8a9, #373b44);
    /* width: 100vw; */
    /* height: 100vh; */
    margin: 0;
    border: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* #game-canvas{
    
} */
canvas {
    border: 5px solid #2e2e2e;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(43, 250, 54, 0.815);
    background-image: url('assets/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    /* we will make the end menu overlap the game canvas, so we need here a lower z-index */
    z-index: 1;
}

.backdrop-blur {
    filter: blur(5px);

}

#end-menu {
    /* we will toggle then the display of the end-menu */
    display: none;
    margin: 50px auto;
    width: 200px;
    padding: 20px;
    text-align: center;
    border-style: 10px solid;
    border-width: 5px;
    background-color: rgba(0, 255, 55, 0.63);
    border-radius: 5px;
    border-color: rgba(12, 71, 25, 0.952);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 1000;
}

.play{
    background-image: url(/assets/play.png);
    width: 30px;
    height: 30px;
    background-color: #333;
    z-index: 999;
}
#play{
    width: 100px;
    height: 28px;
    opacity: 0;
    position: fixed;
    
}

#score_display_text{
    color: #fff;
    font-size: 2em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding-top: 30px;
    padding-bottom: 10px;
}
#score-display {
    
    color: #fff;
    font-size: 2em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#score_display_text_directions{
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

button {
    background-color: #2e2e2e;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer p{
    position:relative;
    color: #fff;
    font-size:10px;
    bottom: -30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}