body {
    min-width: 768px;
    margin: 0;
    padding: 0;
}

.navigationsButtonTextAusblenden {
    border: 1px solid black;
    border-radius: 5px;
    background: gainsboro;
    height: 40px;
    width: 50px;
}

.navigationsButton {
    border: 1px solid black;
    border-radius: 5px;
    background: gainsboro;
    height: 50px;
    width: 50px;
    color: black;
}

.navigationsButton:hover, .navigationsButtonTextAusblenden:hover {
    background: black;
    color: white;
    border: 1px solid white;
}

.aWithoutUnderline {
    text-decoration: none;
}


.bilderTableClass {
    height: 280px;
}

.energieDiagrammClass {
    height: 280px;
}


.spanPlusClass {
    font-weight: bold;
    font-size: 30px;
    position: relative;
    top: -40px;
    left: 2%;


}


@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    20%,
    30%,
    40%,
    50%,
    60%,
    70%,
    80%,
    90%,
    100% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0);
    }
    5%,
    15%,
    25%,
    35%,
    45%,
    55%,
    65%,
    75%,
    85%,
    95% {
        -webkit-transform: translate3d(1px, 0, 0);
        transform: translate3d(1px, 0, 0);
    }
}

@keyframes shakeGedreht {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    20%,
    30%,
    40%,
    50%,
    60%,
    70%,
    80%,
    90%,
    100% {
        -webkit-transform: translate3d(1px, 0, 0);
        transform: translate3d(1px, 0, 0);
    }

    5%,
    15%,
    25%,
    35%,
    45%,
    55%,
    65%,
    75%,
    85%,
    95% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0);

    }
}

.shake {
    -webkit-animation: shake 1s infinite;
    animation: shake 1s infinite;
}

.shakeGedreht {
    -webkit-animation: shakeGedreht 1s infinite;
    animation: shakeGedreht 1s infinite;
}

/* tablet porträit*/
@media only screen and (max-width: 945px) {


    .ladungsverteilung {
        max-width: 100%;
        padding-top: 45px;
        height: 130px;
    }

    .molekuelbild {
        max-width: 100%;
        padding-top: 45px;
        height: 100px;
    }

    .molekuelbildKettenreaktion {
        max-width: 100%;
        height: 70px;
    }
}

/* tablet landscape*/
@media only screen and (min-width: 950px) and (max-width: 1299px) {
    .bilderTableClass {
        height: 200px;
    }

    .energieDiagrammClass {
        height: 200px;
    }


    .ladungsverteilung {
        max-width: 100%;
        height: 130px;
        padding-top: 30px;
    }

    .molekuelbild {
        max-width: 100%;
        height: 100px;
        padding-top: 30px;
        padding-left: 30px;
    }

    .molekuelbildKettenreaktion {
        max-width: 80%;
        height: 80px;
    }
}

/* desktop  */
@media only screen and (min-width: 1300px) {


    .ladungsverteilung {
        max-width: 100%;
        padding-top: 45px;
        height: 200px;
    }

    .molekuelbild {
        max-width: 100%;
        height: 100px;
        padding-top: 65px;
        padding-left: 60px;
    }

    .molekuelbildKettenreaktion {
        max-width: 100%;
        padding: 10px 20px;
        height: 100px;
    }
}

