body {
    font-family: 'Hachi Maru Pop', cursive;
    background: linear-gradient(-45deg, #FF5733, #FFA07A, #C9D6FF, #6A5ACD);
    background-size: 400% 400%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: GradientAnimation 20s ease infinite;
}

@keyframes GradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card {
    border-radius: 15px;
}

h1 {
    font-size: 3em;
    color: white;
}

h2 {
    font-size: 1.75em;
}

p {
    font-size: 1.1em;
    color: #333;
}
