/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background Styling */
body, html {
    height: 100%;
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff5f6d, #ffc3a0, #6a82fb, #fc5c7d); /* Multicolor Gradient */
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite; /* Smooth gradient animation */
    color: white;
    text-align: center;
    padding: 0;
}

/* Glassmorphism Effect for the container */
.container {
    background: rgba(255, 255, 255, 0.1); /* White with opacity */
    border-radius: 15px;
    padding: 60px 30px;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(10px); /* Glassmorphism blur effect */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Header styling */
h1 {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Tagline styling */
.tagline {
    font-size: 28px;
    color: #f44336; /* Accent color for branding */
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Description styling */
.description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Adding subtle animations */
.content h1, .content .tagline, .content .description {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.content h1 {
    animation-delay: 0.2s;
}

.content .tagline {
    animation-delay: 0.4s;
}

.content .description {
    animation-delay: 0.6s;
}

/* Animation for fading in elements */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Gradient Animation for background */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 60px;
    }

    .tagline {
        font-size: 24px;
    }

    .description {
        font-size: 18px;
    }
}
