body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f2cfe7;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
}

#question-container {
    margin-bottom: 20px;
}

#options button {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

#next-btn {
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#result-container {
    margin-top: 20px;
    font-weight: bold;
}

body {
    position: relative; /* absolutely-positioned images anchor to the body */
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f2cfe7;
    overflow: hidden; /* prevent scrollbars from oversized images */
}

.bg-img {
    position: absolute;
    z-index: 0;
    max-width: 200px; /* resize if needed */
    pointer-events: none; /* doesnt block clicks */
}

.img1 {
    top: 20px;
    left: 20px;
    transform: rotate(-10deg);
}

.img2 {
    top: 50px;
    right: 30px;
    transform: rotate(10deg);
}

.img3 {
    bottom: 20px;
    left: 40%;
    transform: rotate(-5deg);
}

.container {
    position: relative;
    z-index: 1; /* brings above the background images */
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
}

.img4 {
    top: 10%;
    left: 60%;
    transform: rotate(8deg);
}

.img5 {
    top: 70%;
    left: 10%;
    transform: rotate(-12deg);
}

.img6 {
    top: 30%;
    right: 10%;
    transform: rotate(6deg);
}

.img7 {
    bottom: 10%;
    right: 15%;
    transform: rotate(-8deg);
}

.img8 {
    top: 80px;
    left: 45%;
    transform: rotate(5deg);
}

.img9 {
    top: 250px;
    left: 5%;
    transform: rotate(12deg);
}