
body {
    background: linear-gradient(135deg, #ffdde1, #ee9ca7);
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    width: 80%;
    max-width: 800px;
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
    text-align: center;
    max-height: 80vh; /* Prevents it from exceeding the viewport */
    overflow-y: auto; /* Enables scrolling inside the container */
}

h1 {
    font-size: 2.5rem;
    color: #ff1493;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.question {
    background-color: white;
    border: 2px solid #ff1493;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.submit-btn:hover {
    background: linear-gradient(135deg, #ff69b4, #ff007f);
    transform: translateY(-3px);
}
