body {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Add this property */
    align-items: center; /* Add this property */
    height: 100vh;
    background-color: #000;
    margin: 0;
    overflow: hidden;
}

#gameArea {
    border: 2px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#gameTitle {
    text-align: center;
    color: white;
    margin-top: -500px;
    display: block;
}

#restartButton {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

