/* Basic page styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #000000; //f9f9f9
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    
       background-image: url('../images/lv.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        background-size: 90% 60%;"
        
}

.intro-container {
    text-align: center;
    max-width: 600px;
    padding: 1rem;
}

/* Fade and Slide Animation */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    80% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-slide-in {
    opacity: 0; /* Start hidden */
    animation: fadeSlideIn 1s ease forwards;
}

/* Delays for staggered effect */
.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

/* Styling the text */
h1 {
    font-size: 2.5rem;
    color: #ffffff; //2b5d9b
    margin: 0.5rem 0;
}

h2 {
    font-size: 1.8rem;
    color: #ffffff; //4a90e2
    margin: 0.3rem 0;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;   //555
    margin-top: 1rem;
}