<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">button {
    transition:cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;

    outline: none;
    border: none;

    color: var(--text-color-light);
    background-color: var(--primary-color);

    border-radius: max(0.5vw, 0.5vh);

    margin: 0px;
    padding: 1vh 1vw;

    text-align: center;
    font-weight: bolder;
    white-space: nowrap;
    line-height: normal !important;
    font-size: large;

    filter: none;

    cursor: pointer;
}

button:hover {
    transform: scale(1.2);
    filter: brightness(1.1) var(--shadow);
}</pre></body></html>