/* Body and Background Animation */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Container for Text */
.container {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

/* Heading Animation */
h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: textZoom 2s infinite alternate;
}

@keyframes textZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Animated Text */
.animated-text {
    font-size: 24px;
    animation: fadeIn 3s ease-in-out infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Additional Text Styling */
.additional-text {
    font-size: 18px;
    margin: 10px 0;
    opacity: 0.9;
}

.highlight-text {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    /* Highlight color */
    margin-top: 20px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00;
    }

    100% {
        text-shadow: 0 0 20px #ffcc00, 0 0 30px #ffcc00;
    }
}

/* Home Button Styling */
.home-button {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.home-button:hover {
    background-color: #797979;
    box-shadow: 0 50px 50px rgba(126, 126, 126, 0.2);
    transition: background-color 2s ease;
}

/* Floating Circles for Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 20%;
    animation-duration: 8s;
}

.circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 70%;
    animation-duration: 12s;
}

.circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 40%;
    animation-duration: 10s;
}

.circle:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 50%;
    animation-duration: 15s;
}

.circle:nth-child(5) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 10%;
    animation-duration: 9s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}