/* =========================================
   buttons.css
========================================= */


/* ===== Schließen Button für die Seite "Download-Bereich" ===== */

.schliessen-button {
    position: fixed;
    top: 2.5rem;
    right: 1.5rem;

    color: #d94a38;
    font-size: 2.5rem;
    line-height: 1;

    text-decoration: none;

    opacity: 0.75;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        color 0.25s ease;

    z-index: 999999;
}

.schliessen-button:hover {
    color: #b63727;

    opacity: 1;

    transform:
        scale(1.15)
        rotate(90deg);
}