body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(270deg, #ff6ec4, #7873f5);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    color: white;
    text-align: center;
}
@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}
.hero {
    padding: 100px 20px;
}
button {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    background-color: white;
    color: #333;
    border-radius: 5px;
    transition: transform 0.2s;
}
button:hover {
    transform: scale(1.1);
}
