* {
    padding: 0%; 
    margin: 0%;
    box-sizing: border-box;
    font-size: 16px;
}

h1 {
    font-size: 6vw; 
    font-family: 'Times New Roman', Times, serif;
    font-weight: normal;
    color: white;
    text-shadow: 0 0 3vw rgba(0, 0, 0, 0.5);
}
h2{
    font-size: 3vw;
    font-family: 'Times New Roman', Times, serif;
    font-weight: normal;
    color: white;
    text-shadow: 0 0 1.5vw rgba(0, 0, 0, 0.5);
}
a{
    text-decoration: none; 
    color: white;
 }
.main{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.Main_Image{
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 9;
}
.content{
    position: sticky;
    z-index: 99;
    text-align: center;
}
.horizontaller_Trennstrich{
    width: calc(100vw - 6rem);
    min-width: 85vw;
    margin-top: 0.8vw;
    margin-bottom: 0.6vw;
    border-bottom: 0.08rem solid white;
    box-shadow: 0 0 1rem black;
}
.main_nav{
    display: flex;
    flex-direction: row;
    gap: 0.5vw;
    justify-content: center;
}

.impressum{
    position: fixed;
    bottom: 1rem;
    text-shadow: 0 0 1.5vw rgba(0, 0, 0, 0.5);
    z-index: 99;
}
@media(hover: hover){
    .impressum:hover{
        color: #dfdfdf;
    }
}