.body {
    height:100%;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 0;
    background-color: rgba(47, 46, 46, 0.75);
}

.titleBar {
    height: 9vh;
    left: 0;
    right: 0;
    margin-right: 2px;
    margin-left: 2px;
    background: linear-gradient(360deg, rgb(8, 43, 119) 25%, rgb(0, 57, 203) 100%);
    display: flex;
    align-items: center;
    position: fixed;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

   .collapse {
       animation: collapse .5s ease forwards;
   }

   .open {
       animation: open .5s ease forwards;
   }


@keyframes collapse {
    from {
        opacity: 1;
        top: 0;
    }
    to {
        opacity: 0;
        top: -9vh;
    }
}

@keyframes open {
    from {
        opacity: 0;
        top: -9vh;
    }
    to {
        opacity: 1;
        top: 0;
    }
}

.titleHeading {
    font: 2.5vw Open Calibri, sans-serif;
    color: azure;
    margin-left: 15px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content {
    align-content: flex-start;
    display: grid;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.navBar {
    min-height: 5vh;
    left: 0;
    right: 0;
    margin-right: 2px;
    margin-left: 2px;
    background-color: rgb(47, 46, 46);
    display: flex;
    position: fixed;
    margin-top: 9vh;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

    .collapse_nav {
        animation: collapse_nav .5s ease forwards;
    }

    .open_nav {
        animation: open_nav .5s ease forwards;
    }
@keyframes collapse_nav {
    from {
        margin-top: 9vh;
    }
    to {
        margin-top: 0;
    }
}

@keyframes open_nav {
    from {
        margin-top: 0;
    }
    to {
        margin-top: 9vh;
    }
}

.mainView {
    min-height: 81vh;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    margin-top: 15vh;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

    .collapse_main {
        animation: collapse_main .5s ease forwards;
    }

    .open_main {
        animation: open_main .5s ease forwards;
    }
@keyframes collapse_main {
    from {
        margin-top: 16vh;
    }
    to {
        margin-top: 17vh;
    }
}

@keyframes open_main {
    from {
        margin-top: 17vh;
    }
    to {
        margin-top: 16vh;
    }
}

.navBarButton {
    width: 95%;
    min-height: 5vh;
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
    background: linear-gradient(360deg, rgb(56, 59, 72) 25%, rgb(65, 71, 87) 100%);
    cursor: pointer;
    font: 0.9vw Open Calibri, sans-serif;
    color: azure;
    border: none; /* Rahmen */
    transition: all 400ms;
}

.navBarButton:hover {
    font: 1.2vw Open Calibri, sans-serif;
    background: linear-gradient(360deg, rgb(13, 96, 17, 0.80) 50%, rgba(13, 124, 23, 0.8) 100%);
}

.navBarButton:active{
    font: 1.2vw bold Open Calibri, sans-serif;
    background: linear-gradient(360deg, rgb(13, 96, 17, 0.80) 25%, rgba(13, 124, 23, 0.8) 100%);
}


.para {
    font: 1vw Open Calibri, sans-serif;
    margin-left: 20px;
    width: 100%;
    text-align: center;
}

.footer {
    width: 90vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    font: 0.8vw Open Calibri, sans-serif;
    color: #9ca3af;
}