* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



body {
    width: 100%;
    height: 100vh;
    min-height: 120vh;
}


div {
    margin: 20px;
    box-sizing: border-box;
}


h1 {
    color: darkblue;
    font-family: "Roboto";
    font-size: clamp(1.2em, 2.8vw, 1.50em);;
    text-shadow: 1px 1px 2px white;
    margin-top: 2rem;
}


.container {
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    text-align: center;
    font-family: "Roboto";
}


#menu {
    font-family: "Roboto";
    font-size: 1.5rem;
    font-weight: 800;
    z-index: 99;
    position: fixed;
    top: 25px;
    right: 40px;
    color: darkblue;
    border-top: 5px solid;
    border-bottom: 5px solid;
    cursor: pointer;
    border-color: darkblue;
    transition-duration: 1.5s;

}

#menu:hover {
    transform: scaleY(1.5) translateY(5px);    
}



#logo {
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    width: min-content;
    height: min-content;
    cursor: pointer;
    z-index: 50;
}


#contact {
    font-size: 18px;
    margin-top: 52%;
    position: relative;
    height: fit-content;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 0.5px );
    -webkit-backdrop-filter: blur( 0.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );    
}


#innerContact {
    font-size: 20px;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
}

#innerContact > p {
    font-size: 20px;
    width: 94%;
    min-height: fit-content;
    border-radius: 0.5rem;
    padding: 14px; 
    margin-top:10px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(97, 155, 230);
    text-align: left;
}

#innerContact > p > a:any-link {
    font-size: 20px;
    color: white;
    font-family: "Roboto";
    font-weight: 400;
    text-decoration: none;
}    


#menu-sidebar {
   color: rebeccapurple;
}


#impressum {
    margin-right: 4px;
    position: fixed;
    bottom: 0;
    left: 20px;
    width: max-content;
    height: max-content;
    padding: 0.5rem;
    z-index: 99;
    background-color: darkblue;
    color: white;
    border: 1px solid white;
    border-radius: 1rem 1rem 0 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px grey;
    box-shadow: -2px -2px 5px white;
    transform: translate(0, 3px);
    text-decoration: none;
    cursor: pointer;
    font-size: 10px;
    font-family: "Roboto";
    
} 
#impressum:hover {
    box-shadow: -1px -1px 1px 3px yellowgreen;
    background-color: rebeccapurple;
    filter: brightness(1.5);
    transform: scale(1.1);
}


#whatsapp {
    margin-right: 4px;
    position: fixed;
    bottom: 0;
    left: 29%;
    width: max-content;
    height: max-content;
    padding: 0.5rem;
    background-color: darkolivegreen;
    color: white;
    border: 1px solid white;
    border-radius: 1rem 1rem 0 0;
    text-shadow: 1px 1px 1px grey;
    box-shadow: -2px -2px 5px white;
    transform: translate(0, 3px);
    text-decoration: none;
    cursor: pointer;
    font-size: 10px;
    z-index: 98;
    font-family: "Roboto";
}

#whatsapp:hover {
    box-shadow: -1px -1px 1px 3px lightgreen;
    background-color: darkgreen;
    filter: brightness(1.5);
    transform: scale(1.1);
}



#linkedin {
    margin-right: 4px;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: max-content;
    height: max-content;
    padding: 0.5rem;
    background-color: blue;
    color: white;
    border: 1px solid white;
    border-radius: 1rem 1rem 0 0;
    text-shadow: 1px 1px 1px grey;
    box-shadow: -2px -2px 5px white;
    transform: translate(0, 3px);
    text-decoration: none;
    cursor: pointer;
    font-size: 10px;
    z-index: 98;
    font-family: "Roboto";
}

#linkedin:hover {
    box-shadow: -1px -1px 1px 3px lightblue;
    background-color: darkblue;
    filter: brightness(1.5);
    transform: scale(1.1);
}

#bild {
	max-width: 0px;
	max-height: 0px;
	visibility: hidden;
}