body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Cormorant Garamond', serif;
    color: #f0e6d2;
    overflow: hidden;
    background: #000;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.title {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin: 0;
    animation: fadeIn 4s ease-in-out, text-glow 2s ease-in-out infinite alternate;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 20px;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 4s ease-in-out 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 10px #f0e6d2, 0 0 20px #f0e6d2, 0 0 30px #f0e6d2, 0 0 40px #c8bdae, 0 0 70px #c8bdae, 0 0 80px #c8bdae, 0 0 100px #c8bdae, 0 0 150px #c8bdae;
    }
    to {
        text-shadow: 0 0 5px #f0e6d2, 0 0 10px #f0e6d2, 0 0 15px #f0e6d2, 0 0 20px #c8bdae, 0 0 35px #c8bdae, 0 0 40px #c8bdae, 0 0 50px #c8bdae, 0 0 75px #c8bdae;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&display=swap');