@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(180deg, #ffeef8, #dff6ff);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    min-height: 100vh;
    text-align: center;
}

/* Brand Title */
.brand-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6fae;
    text-shadow: 0px 3px 10px rgba(255, 111, 174, 0.4);
}

/* Content Card */
.container {
    max-width: 450px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 22px 26px;
    margin: 20px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    animation: fadeIn 1.2s ease-in-out;
}

.tagline, .question {
    color: #444;
    margin: 15px 0;
}

/* Hover Image Effect */
.image-wrapper {
    overflow: hidden;
    border-radius: 14px;
}

.fluff-img {
    width: 100%;
    transition: transform 0.45s ease, filter 0.45s ease;
    border-radius: 14px;
}

.image-wrapper:hover .fluff-img {
    transform: scale(1.08) rotate(1.5deg);
    filter: brightness(1.12) saturate(1.2);
}

/* Page Fade-in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0px); }
}
