body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #2a73e0;
    font-family: Arial, sans-serif;
}

#game-container {
    position: relative;
    width: 800px;
    height: 600px;
    border: 2px solid #000;
    background-color: #681664;
}

#circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgb(106, 185, 82);
    border-radius: 50%;
    cursor: pointer;
}

#score, #timer {
    position: absolute;
    font-size: 20px;
    top: 10px;
}

#score {
    left: 10px;
}

#timer {
    right: 10px;
}
