/* styles.css */

/* Reset margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set background gradient */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

/* Container for centering content */
.container {
    text-align: center;
    animation: fadeIn 2s ease-out;
}

/* Main greeting text */
.greeting h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: #fff;
    animation: slideIn 1.5s ease-out;
    letter-spacing: 2px;
}

.highlight {
    color: #ffbb00;  /* Highlight color */
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2);
}

/* Footer text */
.footer p {
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Animation for sliding effect */
@keyframes slideIn {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
