
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
   /*  background: linear-gradient(120deg, #ff4081, #81d4fa); */
    /* background:#F5F7FA;  */
    color:#000080;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.hero {
    text-align: center;
    /* animation: backgroundMove 10s infinite alternate; */
}

@keyframes backgroundMove {
    from {
        background: linear-gradient(120deg, #ff4081, #81d4fa);
    }
    to {
        background: linear-gradient(120deg, #ff6e40, #42a5f5);
    }
} 


.hero-title {
	font-family: "Comic Sans MS";
    font-size: 3em;
    animation: titleSlide 2s ease-out;
}

@keyframes titleSlide {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5em;
    animation: subtitleFade 3s ease-out;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.card-container {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.card {
    /* background-color: rgba(255, 255, 255, 0.1); */
    background-color:#CAE1FF;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
    }
}
footer{
	margin-top:60px;
}