body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    flex-direction: column;
}
#game-container {
    margin-top: 3%;
    display: flex;
    gap: 20px;
    position: relative;
}
#gameCanvas {
    background-color: #000;
    border: 2px solid #444;
}
#hp-bar {
    width: 20px;
    height: 300px;
    background-color: #ccc;
    position: relative;
}
#hp {
    width: 100%;
    background-color: red;
    position: absolute;
    bottom: 0;
}
#message {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: red;
    z-index: 2;
}
#timer {
    position: absolute;
    top: -30px;
    left: 48%;
    transform: translateX(-50%);
    font-size: 24px;
    color: rgb(209, 35, 35);
    z-index: 2;
}
.gameButton {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #008CBA;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.gameButton:hover {
    background-color: #005f73;
}
