body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.game-title {
    text-align: center;
    margin-top: 20px;
    color: navy;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
}

.game-canvas-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 20px;
}

#gameCanvas {
    border: 2px solid navy;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#overlay p {
    font-size: 24px;
    color: white;
}
