/*:root {
    --pastel-yellow: #fff9e6;
    --pastel-purple: #f3ebff;
    --accent-yellow: #ffd966;
    --accent-purple: #c4a3e8;
    --deep-purple: #7c5ba6;
}*/

body {
    background: #7c5ba6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
    font-family: Arial, sans-serif;
}

#game-container {
    position: relative;
}

#game {
    background: #ffd966;
    display: block;
}

#score {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
}

#gameOverMsg {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: bold;
    color: red;
    display: none;
}

#replayBtn {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    background: green;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none;
}

#replayBtn:hover {
    background: #0a0;
}
