#page {
    opacity: 0;
}

#page.show {
    animation: fadeIn 1s ease forwards;
}

@import url('https://fonts.googleapis.com/css2?family=Give+You+Glory&display=swap');

body {
    font-family: "Give You Glory", cursive;

    background: radial-gradient(circle at top, #fffefc 0%, #fffdf8 100%);

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 40px 20px;
    min-height: 100vh;
}

img {
    max-width: min(90vw, 600px);
    max-height: 70vh;

    background: white;
    padding: 12px;

    border-radius: 6px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 12px 30px rgba(0, 0, 0, 0.08);

    animation: fadeIn 1s ease;
}

#text {
    margin-top: 24px;
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;

    animation: fadeIn 1.2s ease;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

#heart {
    margin-top: 18px;
    font-size: 2rem;
    opacity: 0.6;

    animation: fadeIn 1.5s ease;

    width: 100%;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
