*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: 'Calibri', OpenSans, sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    margin:0;
    padding:0;
    min-height: 80vh; /* Mindesthöhe des Body auf 100% der Viewport-Höhe setzen */
}

a{
    color: black;
    text-decoration: none;
}

/* navbar */
.navbar{
    background: #2f5597;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: transform 0s linear;
    transform: translateY(0);
}

.navbar.hidden{
    transform: translateY(-100%);
}

#navbar__logo{
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    margin-left: 10px;
    height: 40px;
}

.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 60px;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 50px;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: 60px
}

.navbar__links{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__links:hover{
    background-color: #3271a5;
}


/* main content */
.main__content{
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto 1rem auto;  
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
}

.main__content_split{
    display: grid;
    grid-template-columns: 60% 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;  
    padding: 0 50px; 
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.main__content_split p{
    margin-bottom: 2rem;
    font-size: 1rem;
}

.main__content_split_upload{
    display: grid;
    grid-template-columns: 60% 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;  
    padding: 0 50px; 
    z-index: 1;
    width: 100%;
    max-width: 900px;
}

.main__content_split_upload h2{
    text-align: left;
}

.main__content_split_contact{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;  
    margin-top: -1.4rem;
    padding: 0 10px; 
    z-index: 1;
    width: 100%;
    max-width: 660px;
    text-align: center;
}

#contact_h1{
    margin-top: 10px;
    margin-left: 35px;
}

#data-contact {
    padding: 0;
    padding-left: 25px;
}

#data-contact h2{
    font-size: 1.2rem;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    margin-left: 0;
    padding-left: 0;
}

#data-contact p{
    margin-top: 0.2rem;
    margin-bottom: 0;
    font-size: 1rem;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.main__content_grey{
    background-color: #f4f7ff;
    padding: 60px 20px;
    text-align: center;
    font-size: 1.2rem;
}

.ziele{   
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.main__content_grey ul {
    display: inline-block; /* Macht die Liste so breit wie der Inhalt */
    text-align: left; /* Richtet den Inhalt der Liste linksbündig aus */
    list-style-type: disc; /* Standard-Punkte */
    padding-left: 20px; /* Platz für die Aufzählungszeichen */
    line-height: 1.4;
}

.main__content h2{
    margin-top: 2rem;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.main__content_left{
    text-align: justify;
    padding: 30px;
    margin-left: 10px;
}

.main__content_left h2{
    font-size: 1.8rem;
    margin: 20px 0;
}

.main__content_left p{
    margin: 0 0 20px 0;
    font-size: 1.2rem;
}

.main__content_right{
    text-align: center;
}

.main__content_right img{
    margin: 0 auto;
    padding: 5rem 2rem;
}

#qr_code{
    width: 240px;
}

.backgroundImage__container {
    background-image: url("../images/DSC_2432.JPG");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain; /* Skalieren des Bildes, damit es komplett sichtbar bleibt */
    width: 100%;
    margin: 0 auto; /* Zentriert den Container horizontal */ 
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: start; /* Positioniert den Inhalt oben */
    text-align: center;
    background-size: 100% auto; /* Hintergrundbild auf max. 1000px Breite skalieren */
}

.background-image-container_2 {
    background-image: url("../images/Unfall_1.JPG");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain; /* Skalieren des Bildes, damit es komplett sichtbar bleibt */
    width: 100%;
    margin: 0 auto; /* Zentriert den Container horizontal */ 
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: start; /* Positioniert den Inhalt oben */
    text-align: center;
    background-size: 100% auto; /* Hintergrundbild auf max. 1000px Breite skalieren */
}

.backgroundImage__container_3 {
    background-image: url("../images/DSC_5143.JPG");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain; /* Skalieren des Bildes, damit es komplett sichtbar bleibt */
    width: 100%;
    margin: 0 auto; /* Zentriert den Container horizontal */ 
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: start; /* Positioniert den Inhalt oben */
    text-align: center;
    background-size: 100% auto; /* Hintergrundbild auf max. 1000px Breite skalieren */
}

.backgroundImage__container_4 {
    background-image: url("../images/Grafik-Bauer-Foto.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain; /* Skalieren des Bildes, damit es komplett sichtbar bleibt */
    width: 100%;
    margin: 0 auto; /* Zentriert den Container horizontal */ 
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: start; /* Positioniert den Inhalt oben */
    text-align: center;
    background-size: 100% auto; /* Hintergrundbild auf max. 1000px Breite skalieren */
}

.backgroundImage__container_5 {
    background-image: url("../images/DSC_5970.JPG");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain; /* Skalieren des Bildes, damit es komplett sichtbar bleibt */
    width: 100%;
    margin: 0 auto; /* Zentriert den Container horizontal */ 
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: start; /* Positioniert den Inhalt oben */
    text-align: center;
    background-size: 100% auto; /* Hintergrundbild auf max. 1000px Breite skalieren */
}

.backgroundImage__container_6 {
    background-image: url("../images/DSC_5974.JPG");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain; /* Skalieren des Bildes, damit es komplett sichtbar bleibt */
    width: 100%;
    margin: 0 auto; /* Zentriert den Container horizontal */ 
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: start; /* Positioniert den Inhalt oben */
    text-align: center;
    background-size: 100% auto; /* Hintergrundbild auf max. 1000px Breite skalieren */
}

.text-box_center{
    background-color: white; /* Halbtransparenter schwarzer Hintergrund */
    color: black; /* Weißer Text */
    padding: 15px; /* Innenabstand im Textkasten */
    max-width: 800px; /* Textkasten nimmt maximal 90% der Breite des Containers ein */
    text-align: justify; /* Text zentrieren */
    margin: 400px auto 50px auto;
    border: 1px solid black; /* Schwarzer Rahmen */
}

.text-box_center h1{
    font-size: 1.6rem;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    margin-left: 40px;
    text-align: justify;
}

.text-box_center h2{
    font-size: 1.2rem;
    margin-top: 1.8rem;
    text-align: justify;
    margin-left: 40px;   
}

.text-box_center p{
    font-size: 1.1rem;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0.8rem;
    margin-bottom: 0;
}

.datenerhebung{
    font-size: 1.1rem;
    margin-left: 20px;
    margin-right: 40px;
    display: inline-block; /* Macht die Liste so breit wie der Inhalt */
    text-align: left; /* Richtet den Inhalt der Liste linksbündig aus */
    list-style-type: disc; /* Standard-Punkte */
    padding-left: 20px; /* Platz für die Aufzählungszeichen */
    line-height: 1.4;
}

.datenerhebung li{
    margin-bottom: 0.6rem;
}

#list-123{
    margin-top: 1rem;
    list-style-type: decimal;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1.1rem;
    margin-left: 20px;
    margin-right: 20px;
}

#list-withoutHeading{
    margin-top: 1rem;
}

#text-box_onlyText{
    margin-top: 0;
}


/*--------- footer ----------*/
.footer {
    margin-top: 1rem;
    border-top: 1px solid rgb(194, 194, 194);
    background: rgb(243, 243, 243);
    color: black;
    padding: 20px 0 0 0; /*0 0*/
    width: 100%;
    font-weight: 500;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 50% 22%; /*1fr 40 1fr*/
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-top h2 {
   margin-bottom: 1rem;
}

.footer-funding {
    flex: 1;
    margin: 0 auto;
    padding: 20px 40px;
}

.footer-funding p {
    margin-bottom: 1rem;
}

.footer-funding img {
    max-width: 100px;
    margin: 10px 20px;
}

.footer-contact{
    flex: 1;
    margin: 0 auto;
    padding: 20px 40px;   
}

.footer-contact p{
    margin: 10px 0;
}

.footer-contact i{
    margin: 5px 0;
}

.footer-links{
    flex: 1;
    padding-right: 0;
    padding-left: 40px;
    padding-top: 20px;
    line-height: 2.35;
}

.footer-links ul {
    list-style: none;
}

.footer-links li a {
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: white;
    border-top: 1px solid rgb(194, 194, 194);
    display: grid;
    grid-template-columns: 1fr 150px 150px 150px 1fr;
    text-align: center;
    align-items: center;
    padding: 20px 20px 5px 20px;
    font-weight: 500;
}

.footer-bottom img{
    max-width: 150px;
}

#lmu img{
    height: 40px;
}

#hm img{
    height: 45px;
}

#lmu_klinikum img{
    height: 35px;
}

#copyright
{
    text-align: center; 
    background-color:white;
    padding-bottom:10px;
}


@media screen and (max-width: 1024px)
{
    .navbar__container{
        max-width: 1024px;
        padding: 0;
    }
    
    #navbar__logo{
        padding-left:25px;
        margin-top: 10px;
    }

    .navbar__menu{
        flex-direction: column;
        margin: 0;
        width: 25%;
        position: relative;
        /*top: -1000px;*/
        opacity: 0;
        transition: all 0s ease;
        /*height: 50vh;*/
        z-index: -1;
    }

    .navbar__menu.active{
        display: flex; 
        background: #2f5597;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 40vh;
        font-size: 2vw;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item{
        width: 100%;
        height: 25%;
        display: table;
    }

    .navbar__links{
        height: 25%;
        text-align: center;
        vertical-align: middle;
        padding: 0rem;
        margin-top: 0;
        width: 100%;
        display: table-cell;   
    }

    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%,20%);
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .main__content{
        max-width: 900px;
    }
           
    .main__content_split{
        max-width: 900px;
        padding: 0 10px; 
        grid-template-columns: 60% 1fr;
    }

    .main__content_split h2{
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
    
    .main__content_split p{
        margin-bottom: 1rem;
    }

    .main__content_right img{
        width: 300px;
        padding: 5rem 2rem;
    }
    
    .main__content_split_upload{
        display: grid;
        grid-template-columns: 60% 1fr;
        align-items: center;
        justify-self: center;
        margin: 0 auto 1rem auto;  
        padding: 0 50px; 
        z-index: 1;
        width: 100%;
        max-width: 900px;
    }
    
    .main__content_split_upload h2{
        text-align: left;
    }
    
    .text-box_center {
        margin-top: 300px;
        padding: 10px 0;
    }
    
    .text-box_center h1{
        margin-top: 0.8rem;
        font-size: 1.4rem;
    }
   
    .text-box_center p{
        font-size: 1.1rem;
    }
   
    .footer-top{
        grid-template-columns: 1fr 50% 22%; 
    }

    .footer-top h2{
       font-size: 1.1rem;
     }

    .footer-top p{
    font-size: 0.8rem;
    }

    .footer-funding{
    margin-left: 20px;
    padding-left: 30px;
    }
    .footer-contact{
    padding: 20px 40px;
    }

    .footer-links{
    padding: 20px 20px;
    line-height: 2.6;
    font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px)
{
    .navbar__container{
        max-width: 768px;
    }

    .main__content{
        max-width: 768px;
    }
   
    .main__content_split{
        max-width: 768px;
        padding: 0; 
        grid-template-columns: 1fr;
    }

    .main__content_right img{
        width: 400px;
        padding: 0 2rem;
        margin-bottom: 2rem;
    }
   
    .main__content_split_contact{
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    #contact_h1{
        margin-top: 2rem;
        margin-bottom: 0;
        padding: 0;
    }

    .main__content_split_upload{
        grid-template-columns: 1fr; 
        padding: 0 10px; 
        max-width: 768px;
    }
    
    
    .text-box_center {
        margin-top: 180px;
        padding: 10px 0;
    }
    
    .text-box_center h1{
        margin-top: 0.8rem;
        font-size: 1.4rem;
    }

    .footer-top { 
        grid-template-columns: 1fr 46% 27%; 
    }
   
    .footer-links{
        padding-left: 0;
        line-height: 2.4;
      }

}

@media screen and (max-width: 576px)
{
    .navbar__menu{
        width: 35%;
    }

    .navbar__menu.active{
        font-size: 1rem;
    }

    .text-box_center h1{
        font-size: 1.2rem;
        margin-left: 20px;
    }

    .text-box_center h2{
        font-size: 1.1rem;
        margin-left: 20px;
    }

    .main__content_split{
        grid-template-columns: 1fr;
        padding: 0 20px 0 20px;
    }

    .main__content_left{
        margin-top: 3rem;
    }

    #contact_h1{
        margin-top: 1rem;
        margin-left: 70px;
    }

    #data-contact h2{
        font-size: 1rem;
    }

    #data-contact{
        margin: 0 8%;
    }

    #data-contact p{
        text-align: left;
    }
 
    .main__content_right img{
        max-width: 300px;
    }  

    /* footer */
    .footer-top {
        grid-template-columns: 1fr;
        justify-content: space-around;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-funding{
        margin-left: 0;
        padding: 50px;
    }
    
    .footer-contact{
        margin-left: 0;
        padding: 10px 50px;
    }

    .footer-links{
        margin-left: 0;
        padding: 10px 50px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr 120px 120px 120px 1fr;
    }

    .footer-bottom img 
    {
        max-width: 80px;
    }
    
    #lmu img{
        height: 28px;
    }

    #hm img{
        height: 30px;
    }
    
    #lmu_klinikum img{
        height: 24px;
    }
    
    #copyright{
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px)
{
    /* navbar */
    #navbar__logo{
        padding-left: 4px;
        height: 30px;
        margin-top: 15px;
    }

    .navbar__menu{
        width: 100%; 
        position: absolute;
    }

    /* main */
    .main__container{
        margin-bottom:2rem;
    }
              
    .main__container h1{
        margin-top: 0rem;
    }
    
    .main__container p{
        font-size: 0.5rem;/*??*/
        margin-top:1rem;
    }

    .main__content{
        padding: 0 10px 0 10px;
        margin-bottom: 0;
    }

    .main__content h1{
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
        
    .main__content h2{
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .main__content_grey{
        font-size: 1rem;
        margin: 0 auto;
        padding-top: 30px;
        padding-bottom: 30px;
        max-width: 100%;
    }

    .main__content_grey ul{
        padding-left: 10%;
        padding-right: 10%;
        line-height: 1.6; 
    }

    .ziele {
        font-size: 1.1rem;
    }

    .main__content_split{
        padding: 0;
    }
    .main__content_split h2{
        padding: 0;
        margin-bottom:1rem; 
        margin-top: 0;
    }

    .main__content_split p{
        padding: 0;
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
    }

    .main__content_left{
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
        margin-top: 0;
    }

    .main__content_left h1{
        margin-top: 2rem;
        font-size: 1.6rem;
    }

    .main__content_left h2{
        margin-bottom: 1rem;
    }

    .main__content_left p{
        margin-bottom: 0;
        margin-top: 0.8rem;
    }

    .main__content_right{
        padding: 0.5rem 0;
        margin: 0;
    }

    .main__content_right h2{
        margin-left: 15px;
    }
    
    .main__content_right p{
        margin-left: 15px;
    }

    .main__content_right img{
        max-width: 100%;
        margin: 0 auto 0 auto;
    }

    .text-box_center {
        margin-top: 150px;
        margin-bottom: 0;
    }

    .text-box_center h1 {
        margin: 5px 15px 0 15px;
        font-size: 1.3rem;
        text-align: left;
    }

    .text-box_center h2{
        font-size: 1.1rem;
        margin-left: 15px;
    }

    .text-box_center p{
        font-size: 1rem;
        margin-left: 15px;
        margin-right: 15px;
        text-align: left;
        line-height: 1.4;
    }

    .datenerhebung{
        font-size: 1rem;
        margin-left: 5%;
        margin-right: 5%;
        padding-left: 5%; /* Platz für die Aufzählungszeichen */
    }

    #contact_h1{
        margin-top: 1rem;
        margin-left: 20px;
    }

    #data-contact{
        margin-left: 0;
        padding-left: 10px;
    }

    #data-contact h2{
        text-align: left;
        font-size: 1.1rem;
    }

    #data-contact p{
        text-align: left;
        margin-right: 0px;
        padding-right: 10px;
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
    }

    #list-123{
        margin-top: 1rem;
        padding-left: 10%;
        padding-right: 5%;
        font-size: 1rem;
        margin-left: 0;
        margin-right: 0;
        line-height: 1.6; 
    }

    /* footer */
    .footer-bottom {
        grid-template-columns: 1fr 30% 30% 30% 1fr;
    }

    #lmu img{
        height: 28px;
    }

    #hm img{
        height: 30px;
    }
    
    #lmu_klinikum img{
        height: 24px;
    }
}


@media screen and (max-width: 320px)
{
    #lmu img{
        height: 24px;
    }

    #hm img{
        height: 26px;
    }
    
    #lmu_klinikum img{
        height: 20px;
    }
}