body {
    margin: 0;
    font-family: 'Comic Sans MS', cursive;
    background: linear-gradient(to right, #a1c4fd, #c2e9fb);
    animation: bgMove 8s infinite alternate;
}

@keyframes bgMove {
    0% { background-position: left; }
    100% { background-position: right; }
}

.contact-container {
    text-align: center;
    padding: 40px;
}

/* 🎉 Title */
.title {
    font-size: 38px;
    color: #ff6f61;
    animation: bounce 2s infinite;
}

/* Bounce */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Intro */
.intro {
    font-size: 18px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Card */
.card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin: 20px auto;
    width: 60%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: slideUp 1s ease;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Inputs */
input, textarea {
    width: 80%;
    padding: 10px;
    margin: 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Button */
button {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background: #4CAF50;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.1) rotate(2deg);
    background: #45a049;
}

/* Subscription message */
#subMessage {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    animation: fadeIn 1s ease;
}