* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



body {
    min-height: 100vh; 
}

#background-video{
    display: fix;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
    border: red solid 2px;
    position: fixed;
    right: 0%;
    bottom: 0%;
    min-width: 100%;
    max-height: 100% !important;
    z-index: -1;
    object-fit:cover;
    overflow-y: hidden;
}

#background-video-portrait{
    display: none;
}


nav{
    display: flex;
    justify-content: flex-end; /* Elemente nach rechts ausrichten */
    padding-right: 2rem;
    padding-top: 1rem;
    background: linear-gradient(to right, transparent 0%, transparent 10%, transparent 20%, #3ed6d8 80%);
    position: absolute;
    top: 0;
    right: 0;
    width: 100dvw;
    font-size: clamp(1rem, 2vw, 2rem);
    font-family: "Roboto";
    font-weight: 400;
    min-height: min-content;
    height: 4rem;
    text-align: right;
    backdrop-filter: blur( 0.5px );
    -webkit-backdrop-filter: blur( 0.5px );
    z-index: 1;
}



nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li a {
  display: block;
  text-align: right;        /* Text rechts im Link */
  text-decoration: none;
  color: #333;
}

nav li a:any-link{
    color: white;
} 

nav li a::first-letter{
    font-weight: 900;
    color: aqua;
    text-decoration: underline;
}


#slogan{
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    text-shadow: 1px 1px 2px rgb(20, 17, 86);
    font-size: clamp(1.2rem, 3vw, 3.4rem);
    font-family: "Roboto";
    font-weight: 600;
    min-height: min-content;
    text-align: left;
    backdrop-filter: blur( 0.5px );
    -webkit-backdrop-filter: blur( 0.5px );
    padding-left: 1rem;
    padding-top: 0.5rem;
}

#main-div{
    min-width: 100dvw;
    min-height: 100dvh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: space-around;
    align-items: center;
    z-index: 10;
}

#nav-bottom{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Elemente nach rechts ausrichten */
    padding-left: 2rem;
    padding-top: 0.5rem;
    background-color: #3ed6d8;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100dvw;
    height: 3rem;
    font-size: clamp(1rem, 1vw, 2rem);
    font-family: "Roboto";
    font-weight: 400;
    min-height: min-content;
    text-align: left;
    backdrop-filter: blur( 0.5px );
    -webkit-backdrop-filter: blur( 0.5px );
    z-index: 2;
}

#nav-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav-bottom li a {
    display: block;
    text-align: left;
    text-decoration: none;
    color: #333;
}

#nav-bottom li a:any-link{
    color: white;
} 

#nav-bottom li a::first-letter{
    font-weight: 400;
    color: aqua;
    text-decoration: none;
}


.card {
    display: flex;
    min-width: 30dvw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #3ed6d8;
    border-radius: 7px;
    border: 2px solid white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-size: clamp(0.5rem, 1vw, 2rem);
    font-family: "Roboto";
    font-weight: 400;
    z-index: 11;

    && img{
        width: 40px;
        height: 40px;
    }
}


.standart-link a:any-link{
        text-decoration: none;
        color: white;
        z-index: 12;
    }