body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: rgb(253, 132, 247);
}

#main {
    width: 80vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 15px;
    background-color: white;
    padding: 20px;
    font-size: 24px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(255, 183, 237);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    box-shadow: rgb(204, 128, 240) 10px 5px 10px 5px;
}
p {
    margin-top: 20px;
    text-align: center;
    white-space: pre-line;
}
#choices {
    display: none;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

.choice-button {
    padding: 10px 22px;
    border: none;
    border-radius: 999px;
    background-color: rgb(253, 132, 247);
    color: white;
    font-size: 18px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.choice-button:active {
    transform: scale(0.98);
}
img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

#next {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background-color: rgb(253, 132, 247);
    color: white;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#next:active {
    transform: translateY(-50%) scale(0.96);
}