body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ec5b5b;
}

.game-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;  /* Add space between title and game */
}

.game-container {
    position: relative;
    width: 800px;
    height: 600px;
}

canvas {
    border: 2px solid black;
    background-color: #f0f0f0;
}

/* Home Button Style */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.home-button:hover {
    background-color: #45a049;
}

/* Score Display */
.score {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}
