<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,body {
    padding:7px;
    font-family:"system-ui",sans-serif;
    max-width:500px;
    background:#111;
    color:#fff;
}
a {
    color:#fff;
}
p {
    line-height:1.5;
}
input,select,textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #343434;
    font-size: 16px;
    background: #161616;
    cursor:text;
    color:#fff;
}

.button {
    text-decoration: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background: #fff;
    border: 1px solid #ccc;
    font-weight: bold;
    border-radius: 12px;
    display: inline-block;
    margin: 0px;
    padding: 9px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    color: #fff;
}
.button:hover {
    background: none;
    color: 000;
}
.button:active {
    opacity: 0.5;
}
.button.gradient {
    border:1px solid rgba(0,0,0,0);
    background:linear-gradient(60deg,#f79533,#f37055,#ef4e7b,#a166ab,#5073b8,#1098ad,#07b39b,#6fba82);
    animation: animatedgradient 6s ease infinite alternate;
    background-size: 300% 300%;
}
.button.gradient:hover {
    background:none;
    color:#fff;
    border-color:#fff;
}
@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.button.disabled {
    opacity: 0.5;
    filter: grayscale(100%);
    cursor: not-allowed;
}</pre></body></html>