body {
    background-color: rgb(255, 255, 106);
    font-size: 12pt;
    text-decoration: none;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.box {
    padding-left: 25vw;
    padding-right: 25vw;
}

.textbox {
    align-self: center;
    text-align: justify;
}

.centered {
    text-align: center;
}

.bw {
    background-color: lightgray;
    color: black;
}

.bw .heading,
.bw #shake,
.bw #shake-link {
    color: black;
}

.bw .heading {
    border-bottom: 1px dashed black;
    border-top: 1px dashed black;
}

.bw button {
    background-color: lightgray;
}

a:link {
    color: black;
    cursor:  pointer !important;
}

a:visited {
    color: black;
}

p{
    font-size: 8pt;
    text-align: left;
}

.heading {
    border-bottom: 1px dashed red;
    border-top: 1px dashed red;
    padding-bottom: 1vh;
    padding-top: 1vh;
    text-align: center;
    color: red;
}

button {
    position: fixed;
    right: 0.5vw;
    top: 2vh;

    background-color: rgb(255, 255, 106);
    border: none;
    color: black;
    text-align: center;
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
}

#shake {
    display: inline-block;
    color: red;
}

#shake:hover {
    display: inline-block;
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: default;
}

#shake-link {
    display: inline-block;
    color:red;
}

#shake-link:hover {
    display: inline-block;
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: default;
}

@media only screen and (max-width: 600px) {
    body {
        text-align: justify;
        hyphens: auto;
    }

    .box {
        padding-left: 0;
        padding-right: 0;
    }

    .heading{
        text-align: center;
    }

   button {
        position: relative;   /* Standard-Flow */
        display: block;       /* Nimmt ganze Breite ein, damit margin:auto funktioniert */
        margin: auto; 
        margin-bottom: 5vh;    /* Oben/Unten Abstand + zentriert horizontal */
        text-align: center;
    }
}