body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1E3C72, #2A5298); /* Tech and cloud colors */
    color: #FFFFFF; /* White text for better contrast */
    overflow: hidden;
    animation: backgroundAnimation 15s infinite alternate;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #00ADEF; /* Tech blue */
}

p {
    font-size: 1.5em;
    color: #FFFFFF; /* White text for better contrast */
}

.highlight {
    color: #00ADEF; /* Tech blue */
    font-weight: bold;
}

@keyframes backgroundAnimation {
    0% {
        background: linear-gradient(135deg, #1E3C72, #2A5298); /* Tech and cloud colors */
    }
    100% {
        background: linear-gradient(135deg, #2A5298, #1E3C72); /* Tech and cloud colors */
    }
}

.animate-text {
    animation: textAnimation 2s ease-in-out infinite alternate;
}

@keyframes textAnimation {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0.5;
        transform: translateY(-10px);
    }
}