@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    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;
}
#Ü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;  
}

.content{
    margin-top: 30px;
    margin-left: 400px;
    
}
.content p {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

.content li {
    list-style: none;
    display: inline-block;
    padding: 0px 15px;
    font-size: 16px;
    margin-top: 30px;
    
}
.content a {
    font-size: 16px;
    color:rgb(187, 185, 185);
}
.content li a {
    transition: all 0.3s ease 0s;
}
.content li a:hover {
    color: #0088a9;  
}

#Außenbereich a {
    color:#0088a9;
}

.controller p{
    margin-top: 40px;
    margin-left: 450px;
    color: lightcoral;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

.wave_container{
    display:flex;
    margin-top: 525px;
    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;
}