/* Basic Reset */
body,
h1 {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    /* Light background for a clean look */
}

.container {
    text-align: center;
}

.sleek-text {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    /* Dark grey for a modern, sleek look */
    /*text-transform: uppercase;*/
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #0f0c29, #302b63, #24243e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: subtleGradient 5s ease infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Subtle Gradient Animation */
@keyframes subtleGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}