@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    position: relative;
    background-color: #24252A;
}

header li, a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: flex;
    align-items: center;
    padding: 10px 20%;
    background-color: #24252A;
    position: -webkit-sticky;
	position: sticky;
	top: 0;
    margin-top:40px;
    z-index:100;
}
#Überschrift a{
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    background: conic-gradient(crimson,coral,#0088a9,crimson);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 2000px 2000px;
    animation: rgb 5s infinite linear;
    -moz-animation: rgb 5s infinite linear;
    -webkit-animation: rgb 5s infinite linear;
    }
    
@keyframes rgb{
    0% {
        background-position: 0 0;
    }
    25%{
        background-position: 0 100%;
    }
    50%{
        background-position: 100% 100%;
    }
    75%{
        background-position: 100% 0;
    }
    100%{
        background-position: 0 0;
    }
}
.logo {
transform: scale(1);
}
.nav__links{
    list-style:none;
}
.nav__links li {
    display: inline-block;
    padding: 0px 60px;
    
}
.nav__links li a {
    transition: all 0.3s ease 0s; 
    
}

.nav__links li a:hover {
    color: #0088a9;  
}

.Auswahl_Bereich{
    margin-top: 30px;
    margin-left: 400px;
    
}
.Auswahl_Bereich p {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

.Auswahl_Bereich li {
    list-style: none;
    display: inline-block;
    padding: 0px 15px;
    font-size: 16px;
    margin-top: 30px;
    
}
.Auswahl_Bereich a {
    font-size: 16px;
    color:rgb(187, 185, 185);
}
.Auswahl_Bereich li a {
    transition: all 0.3s ease 0s;
}
.Auswahl_Bereich a:hover {
    color: #0088a9;  
}
#Auswahl_ID a {
    color:#0088a9;
}
.wave_container{
    display:flex;
    margin-top: 107px;
    z-index:-50;
    overflow:hidden;
    
}
.waves{
    position: absolute;
    bottom: 10;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    overflow-x:hidden;
    overflow-y:hidden;
}

.waves svg{
    position: relative;
    display: block;
    width: calc(110% + 1.3px);
    height: 200px;
    transform: rotateY(180deg);
}
.waves .shape-fill {
    fill: #0088A9;
}

.Controller {
    transform:scale(0.7);
    display:flex;
    margin-left:150px;
    justify-content:flex-start;
    gap: 140px;
}

  .container{
    display: flex;
    align-items: center;
    justify-content: left;
    background: transparent;
    background-color: transparent;
  }
  .container .box{
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 30px;  
    transition: 0.4s ease-in-out;
  }
  .container .box::before{
    content: '';
    position: absolute;
    top:0;
    left:50px;
    width: 60%;
    height:100%;
    background: linear-gradient(90deg, #B06AB3, #4568DC);
    border-radius: 8px;
    transform: skewX(14deg);
    transition: 0.5s ease;
  }
  
  .container .box::after{
    content: '';
    position: absolute;
    top:0;
    left:50px;
    width: 60%;
    height:100%;
  
    background: linear-gradient(20deg, #B06AB3, #4568DC);
    border-radius: 8px;
    transform: skewX(14deg);
    transition: 0.5s ease;
    filter: blur(15px)
  }
  .container .box:hover::before,
  .container .box:hover::after
  {
    left: 20px;
    transform: skewX(-25deg);
    width: calc(100% - 50px);
  }
  .content{
    display: block;
    z-index:1;
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(20px);
    z-index: 2;
    transform: 0.5s;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .box:hover .content
  {
    padding: 80px 40px;
  }
  .box:hover .content a{
    transform: translateY(0px);
    opacity: 1;
  }
.content h2 {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 30px
    
  }
  .content p{
    text-align: center;
    letter-spacing: 1px;
    font-weight:300;
    padding: 4px;
    margin-bottom: 20px;
  }
  
  .content a{
    padding: 10px 40px;
    position: relative;
    text-align: center;
    background: #fff;
    color: #000;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(90px);
    transition: 0.5s ease-in-out;
  }