@media (max-width: 768px) {

    .navigation {
        visibility: hidden;
    }

    .namemobile {
        position: fixed;
        width: 90vw;
        top: 0;
        visibility: visible;
        height: auto;
        font-size: 2rem;

        background-color: rgba(255, 255, 255, 0.7);
        border: black solid 0.5px;
        z-index: 8;
        margin-top: 1vw;
        margin-left: 5vw;
        margin-right: 5vw;

        text-align: center;
        border-radius: 20px;

    }




    .notation {
        position: absolute;
        left: 5vw;
        font-size: 0.5rem;
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        column-gap: 30px;
        grid-template-rows: 1fr 1fr 1fr 2fr 2fr;
        line-height: 0.5rem;
        /* font-size: 0.7rem; */
        letter-spacing: 0.05rem;
        align-items: center;
        width: 90vw;

        color: rgb(0, 0, 0);
        transition: letter-spacing 0.1s ease;
        z-index: 4;
        row-gap: 0.3rem;
        line-height: 0.8em;

    }


    .menustripe {
        position: absolute;
        width: 100vw;
        top: 100%;
        visibility: visible;
        height: auto;
        font-size: 1.5rem;
        display: flex;
        flex-direction: column;
        z-index: 8;


        background-color: rgba(255, 255, 255, 0);
        border: black solid 0.5px;


    }

    .menumobile {
        position: absolute;
        top: 100%;
        flex: 1;
        width: 50vw;
        left: 50vw;
        visibility: hidden;
        background-color: white;
        border: black solid 0.5px;
        padding-left: 0.5rem;
        z-index: 8;
    }

    .registermobile {
        left: 50vw;
        outline-offset: unset;
        visibility: visible;
        z-index: 8;
    }

    .contactmobile {
        left: 0;
        outline-offset: unset;
        visibility: visible;
        z-index: 8;
    }

    .register {
        position: fixed;
        top: 0%;
        flex: 1;
        width: 100vw;
        height: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0);
        padding-left: 0.5rem;
        visibility: visible;
        z-index: 3;
        /* pointer-events: all; */
        pointer-events: none;
        height: 0;
    }

    .register.hidden {
        pointer-events: none;
        height: 0;
    }
    .register.show {
        height: 100vh;
    }

    .register-container {
        height: 50vh;
    }

    thead {
        background-color: rgba(255, 255, 255, 0);
        border-radius: 0px;
        background-color: white;
    }

    .register td:nth-child(2),
    .register td:nth-child(4),
    .register td:nth-child(5),
    .register td:nth-child(6) {
        display: none;
    }

    .register th:nth-child(2),
    .register th:nth-child(4),
    .register th:nth-child(5),
    .register th:nth-child(6) {
        display: none;
    }

    .register-container {
        background-color: rgba(255, 255, 255, 0.884);
        pointer-events: all;
    }

    tr {
        background-color: rgba(255, 255, 255, 0);
        color: black;
        filter: blur(0px);
        font-size: 0.8rem;

    }

    tr:hover {
        font-size: 0.8rem;
        letter-spacing: 0;

    }

    .navigation:hover,
    .navigation:hover .bio,
    .navigation:hover .menu,
    .menu:hover,
    .menu.contact:hover .submenus,
    .menu.about:hover .imprint {
        height: 0 !important;
        visibility: hidden !important;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        transition: none !important;
        pointer-events: none !important;

    }

    .navigation:hover #bio,
    .navigation:hover #menufold,
    .navigation:hover #imprint,
    .navigation:hover #contactmenu,
    #about:hover #imprint,
    #contact:hover #contactmenu {
        height: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: none !important;
    }


}