/* styles.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

#container {
    position: relative;
    width: 560px;
    height: 1024px;
    margin: 0 auto;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
}


.circle {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
}
