html,body {
    padding:7px;
    font-family:"system-ui",sans-serif;
    max-width:600px;
    margin-left: auto;
    margin-right: auto;
    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.red {
    background:rgb(255 71 66);
    color:#fff;
    border:1px solid rgb(255 71 66);
    border-radius:12px;
    display:inline-block;
    margin:0px;
    padding:9px;
}
.button.red:hover {
    background:none;
    color:rgb(255 71 66);
    border-color:rgb(255 71 66);
}

.button.green {
    background:#2bde73;
    color:#000;
    border:1px solid #2bde73;
    border-radius:12px;
    display:inline-block;
    margin:0px;
    padding:9px;
}
.button.green:hover {
    background:none;
    color:#2bde73;
    border-color:#2bde73;
}
.button.white {
    background:#fff;
    color:#000;
    border:1px solid #fff;
    border-radius:12px;
    display:inline-block;
    margin:0px;
    padding:9px;
}
.button.white:hover {
    background:none;
    color:#fff;
    border-color:#fff;
}

.button.white.reverse {
    background:none;
    color:#fff;
    border:1px solid #fff;
    border-radius:12px;
    display:inline-block;
    margin:0px;
    padding:9px;
}
.button.white.reverse:hover {
    background:#fff;
    color:#000;
    border-color:#fff;
}
.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;
}