  footer div{
        display: flex;
        align-items: center;
        width: fit-content;
    }
    
    html{
        height: 100%;
        width: 100%;

    }



#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2b256c;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

img{
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.5s ease-out, transform 0.5s ease-out;
}

img.start, #loading-gif, #mobil_nav, #logo img, #logo{
  opacity: 1;
  transform: translateY(0);
}


/* Gilt bis 1500px Breite */
@media only screen and (max-width: 1300px) {

    #loading-gif {
        width: 18vw;
}

    #normal_menu{
        display: none;
        position: absolute;
    }

    #mobil_menu{
        background-color: #2b256c;  
        display: flex;
        align-items: center; 
        padding: 1%;
        z-index: 9;
        width: 98%;
    }

    #mobil_nav{
        position: absolute;
        width: 7vw;
        z-index: 11;
        right: 6.5vw;
        top: 6.5vw;
    }

    #logo{
        margin-left: 46vw;
        margin-block: 2vw;
    }
    #logo *{
        width: 10vw;
    }

    #nav_menu{
        position: absolute;
        background-color: #2b256c;
        z-index: 10;
        width: 0%;
        transition: width 1s;
        flex-direction: column;
        top:0px;
        height: 100%;
        padding-top: 25vw;
        right:0vw;
        display: none;
        visibility: hidden;
        overflow: hidden;
    }

    #nav_menu *{
        color: white;
        text-decoration: none;
        position:relative;
        margin-block: 3vw;
        font-size: 4vw;
        text-align: right;
        width: 90vw;
        
    }

    .button{
        background-color: #2dedd3;
        padding:1vw;
        padding-inline:25px;
        border-radius: 10em / 10em;
        font-size: 2vw:
    }

    .button *{
        color: black;
        text-decoration:none;
        font-size: 2.8vw;

    }

    .headline{
        font-size: 4vw;
        font-weight: bold;
    }

    footer{
        padding-block: 5%;
        background-color: lightgrey;
        display: grid;
        place-items: center;

        
    }

    body{
        margin: 0;
        font-family: Geneva, Tahoma, Verdana, sans-serif;
        font-size: 2.8vw;
    }
}

/* Gilt ab 1501px Breite */
@media only screen and (min-width: 1301px) {
        #loading-gif {
        width: 8vw;
        height: auto;
}

    body{
        align-items: center;
        margin:0;
        font-family: Geneva, Tahoma, Verdana, sans-serif;
        font-size: 0.8vw;
    }

    header{
        background-color: #2b256c;
        padding-inline: 30px;  
        display: flex;
        align-items: center; 
        padding: 1vw;
    }

    #mobil_nav, #nav_menu{
        display: none;
        position: absolute;
    }
    header nav{
        margin-right:80px;
    }

    header nav div{
        padding-inline:20px;
    }

    header *{
        display: inline-block;
        color: white;
    }

    nav{
        margin-left: auto;
    }

    nav a{
        display: inline-block;
        color: white;
        margin-inline: 1vw;
        text-decoration: none;
        font-size: 0.8vw;
    }

    nav a:hover{
        font-weight: bold;
        color: #2dedd3; 
    }

    #mobil_menu{
        display: none;
        position: absolute;
    }

    .button{
        background-color: #2dedd3;
        padding:0.5vw;
        padding-inline:25px;
        border-radius: 10em / 10em;
        font-size: 1vw:
    }

    .button *{
        font-size: 1vw;
        color: black;
        text-decoration:none;
        font-size: 0.8vw;
    }

    .button:hover{
        background-color: #2b256c;
        color: #2dedd3;
    }

    .button:hover a{
        color: #2dedd3;
    }

    #logo{
        width: 2.3vw;
        margin-left: 2%;
        margin-right: 1%;
        vertical-align: text-top;
    }

    footer{
        padding: 2%;
        background-color: lightgrey;
        margin-top: 5%;
        display: grid;
        place-items: center;
    }

    #companyName{
        font-weight: normal;
        font-size: 1.3vw;
    }
}