<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* mainbutton.css */

.button {
    display: inline-block;
    background-color: #444;
    border: 6px solid black;
    text-align: center;
    text-decoration: none;
    font-size: 14pt;
    cursor: pointer;
    padding: 8px 32px;
    margin: 1px 14px;
    transition-duration: 0.4s;
    overflow: hidden;
    border-radius: 12px;
    width: 80%;
}

.button:hover {
    background-color: yellow;
}

.position-button {
    display: inline-block;
    background-color: #444;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 14pt;
    cursor: pointer;
    padding: 15px 32px;
    margin: 4px 2px;
    overflow: hidden;
    border-radius: 12px;
}

.position-button:hover {
    background-color: yellow;
    color: blue;
}
</pre></body></html>