/* CSS-Datei live.css */

.fixbutton {
    position: fixed;
    line-height: 0.8;
    display: block;
    top: 3px;
    left: 3px;
    padding: 5px 10px;
    background-color: green;
    border: 1px solid black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    z-index: 1000;
}

body {
    font-family: monospace, arial;
    color: white;
    font-size: 1.2em;
    padding-left: 2em;
    background-color: rgb(0, 50, 0);
}

a {
    color: aqua;
    text-decoration: none; /* Unterstreichung optional entfernen */
}

a:hover {
    color: yellow;
    text-decoration: underline; /* Unterstreichung beim Hover */
}

a:visited {
    color: azure;
}

a:active {
    color: azure;
}
