﻿/* Set the entire page to use a gradient background */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #3ecf8e, #1e3c72, #3ecf8e, #1e3c72);
    background-size: 200% 200%;
    animation: gradientAnimation 20s linear infinite;
    font-family: 'Arial', sans-serif;
    color: white;
}

/* Keyframe animation to smoothly transition the gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Centered content styling */
.centered-content {
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin: 0;
}

p {
    font-size: 2rem;
    margin: 0;
}
