/* typography.css */
h1, h2 {
    color: var(--color-text-dark);
}

h1 {
    font-size: 7.2rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    background: rgba(178, 170, 112, 0.5);
    outline: 5px outset rgba(178, 170, 112, 0.5);
    border-radius: 1rem;
    padding: 0.5rem 2rem;
    margin: 0 auto 2rem;
    width: fit-content;
    text-shadow:
            0 0 4px rgba(251, 255, 109, 0.8),
            0 0 10px rgba(251, 255, 109, 0.6),
            0 0 20px rgba(251, 255, 109, 0.4);
    animation: pulse 5s ease-in-out infinite;

}

h2 {
    font-size: 2.75rem;
    font-weight: 200;
    font-variant: petite-caps;
    backdrop-filter: blur(10px);
    background: rgba(178, 170, 112, 0.5);
    outline: 5px outset rgba(178, 170, 112, 0.5);
    border-radius: 1rem;
    padding: 0.5rem 2rem;
    margin: 0 auto 3rem;
    width: fit-content;
    text-shadow:
            0 0 4px rgba(251, 255, 109, 0.6),
            0 0 10px rgba(251, 255, 109, 0.4),
            0 0 20px rgba(251, 255, 109, 0.2);
}

p {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

@keyframes pulse {
    0%, 100% {
        text-shadow:
                0 0 4px rgba(251, 255, 109, 0.8),
                0 0 10px rgba(251, 255, 109, 0.6),
                0 0 20px rgba(251, 255, 109, 0.4);
    }
    50% {
        text-shadow:
                0 0 10px rgba(255, 255, 109, 1.0),
                0 0 30px rgba(255, 255, 109, 0.8),
                0 0 60px rgba(255, 255, 109, 0.6);
    }
}