<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.my-button {
    background: linear-gradient(-45deg, #096769, #72E625, #00F7FF, #096769);
    background-size: 800% 400%;
    padding: 1em 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    text-align: center;
    transition: all 0.5s ease-in-out;
    animation: gradient 5s infinite cubic-bezier(.62, .28, .23, .99) both;
}

.my-button:hover {
    animation: gradient 2s infinite;
    transform: scale(1.05);
}

.my-button:active {
    transform: scale(0.8);
}</pre></body></html>