h1{
    text-align: center;
    margin-top: 100px;
}

#myArkanoid{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

#myArkanoidGameOver{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 560px;
    height: 400px;
    background-image: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url("../images/image.png");
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: none;
    z-index: 2;
    
    align-items: center;
    justify-content: center;
}

.game-over-text p {
    font-size: 24px;
    margin-top: 20px;
}

.game-over-text h2 {
    font-size: 60px;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.game-over-text {
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

#myArkanoidGameOver:hover {
    background-image: 
        linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
        url("../images/image.png");
}