/* Textbutton unten rechts --> nach oben */


/* Textbutton "nach oben" --- Anfang */
    .scroll-top{
    display: block;
    width: max-content;

    margin: 25px 0 0 auto; /* schiebt nach rechts */

    color: red;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

    .scroll-top.show{
        opacity:1;
        visibility:visible;
    }

    /* Nur Smartphone & Tablet */
    @media (min-width: 1025px){
        .scroll-top{
            display:none;
        }
    }

    html{
        scroll-behavior:smooth;
    }
/* Textbutton "nach oben" --- Ende */
