html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
	flex-direction: column;      /* 👈 stack vertically */
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
	background-color: #630012;
/*	background: #0a0a0a;         /* optional: dark ambience */
	animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

p {
    font-family: 'Cinzel', serif;
    color: #cfcfd4;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
	animation: textFlicker 1.6s ease-out forwards;
}

/* Add subtle spacing between the two lines */
p + p {
    margin-bottom: 1.5rem;
}

p:first-of-type {
    opacity: 0.7;
}

p:last-of-type {
    opacity: 0.9;
}

@keyframes textFlicker {
    0% {
        opacity: 0;
        letter-spacing: 0.3em;
    }

    30% {
        opacity: 0.6;
        letter-spacing: 0.15em;
    }

    60% {
        opacity: 1;
        letter-spacing: 0.08em;
    }

    100% {
        opacity: 1;
        letter-spacing: 0.08em;
    }
}

.centered-image {
    max-width: 40vw;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
}

.centered-image {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.centered-image:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.7));
}

@media (hover: none) {
    .centered-image:hover {
        transform: none;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
    }
}

p {
    
}


