* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #1a1a2e, #2d1b3d, #3d1e2e, #3d2e1e, #2e3d1e, #1e3d2e, #1e2e3d, #2e1e3d, #1a1a2e);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.question {
    width: 95vw;  /* Takes up 60% of viewport width */
    max-width: 500px;  /* But never bigger than 800px */
    height: auto;  /* Maintains aspect ratio */
    opacity: 0.7;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
    animation: breathe 4s ease-in-out infinite;
    transition: transform 0.3s ease-out;
    cursor: default;
    user-select: none;
}

@keyframes breathe {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .question {
        font-size: 5rem;
    }
}