body{
    background-image: url(images/game-bg.jpg);
    background-size: cover;
}


h1 {
    text-align: center;
    text-decoration: underline;
}

.game-container {
    display: flex;
    background-color: rgba(0, 0, 0, 0.605);
    border-radius: 20px;
    height: 400px;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

}

button {
    padding: 8px 20px;
    font-size: 16px;
    background-color: navy;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: inset 5px 10px 20px black;

}

button:hover {
    background-color: black;
    box-shadow: inset 5px 10px 20px navy;
}

p{
    font-size: 20px;
    color: white;
    text-align: start;
}