/* styles.css */

.my-button {
    cursor: pointer;
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 10px 20px;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    image-rendering: pixelated;

    /* Y2K pixelated raised button effect using box-shadow */
    box-shadow:
        /* black border */
        0 0 0 2px #000000,
        /* outer highlight (top-left) */
        -2px -2px 0 2px #ffffff,
        /* inner shadow (bottom-right) */
        2px 2px 0 2px #000000,
        /* hard drop shadow */
        4px 4px 0 0 #000000;
}

.my-button:hover {
    background-color: #e0e0e0;
    box-shadow:
        0 0 0 2px #000000,
        -1px -1px 0 2px #ffffff,
        1px 1px 0 2px #000000,
        2px 2px 0 0 #000000;
    transform: translate(2px, 2px);
}

.my-button:active {
    background-color: #cccccc;
    box-shadow:
        0 0 0 2px #000000,
        inset 1px 1px 0 2px #888888;
    transform: translate(4px, 4px);
}