


body {
    margin: 0;
    font-family: 'Comic Sans MS', cursive;
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    animation: bgMove 8s infinite alternate;
}

/* 🌈 Background animation */
@keyframes bgMove {
    0% { background-position: left; }
    100% { background-position: right; }
}

.about-container {
    text-align: center;
    padding: 40px;
}

/* 🎉 Title animation */
.title {
    font-size: 40px;
    color: #ff6f61;
    animation: bounce 2s infinite;
}

/* 🪀 Bounce effect */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ✨ Intro fade-in */
.intro {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.highlight {
    color: #4CAF50;
    font-weight: bold;
}

/* 📦 Card animation */
.card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin: 15px auto;
    width: 70%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: slideUp 1s ease;
    transition: transform 0.3s;
}

/* 📈 Slide up */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 🖱 Hover effect */
.card:hover {
    transform: scale(1.05);
}

/* 🎈 Floating effect */
.card h2 {
    color: #ff9800;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 🎯 Button animation */
button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: #4CAF50;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 💥 Button hover pop */
button:hover {
    background: #45a049;
    transform: scale(1.1) rotate(2deg);
}

/* 😊 Message animation */
#funMessage {
    margin-top: 15px;
    font-size: 18px;
    color: #333;
    animation: fadeIn 1s ease;
}