body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.landing-page {
    text-align: center;
}

.landing-page h1 {
    font-size: 2rem;
    margin: 0;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.landing-page h2 {
    font-size: 3rem;
    margin: 0;
    opacity: 0;
    animation: fadeIn 2s 0.5s forwards;
}

.landing-page p {
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 2s 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}