*{
    padding: 0;
    margin: 0;
    font-family: Helvetica, sans-serif, Arial;
}
body {
    background-color: #ededed;
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
}
.logo{
    height: 40px;
}
.navbar{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.8);
    background-color: #000000;
    overflow: hidden;
}
.navigation{
    display: flex;
    justify-content: center;
    list-style: none;

}
.navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: grey;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    height: 80px;
    width: 125px;
}
a:hover{
    background-color:white ;
    color: lightcoral;
}

.navigation a.active {
   color: white; 
}
.center-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height:calc(100vh - 80px);
}
body.homepage .center-container{
    background-image: url("/Bilder/SterneHetlingen2021.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.hello-universe{
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 8px;
    color: white;
}
@media (max-width: 500px){
    .hello-universe{
        font-size: 32px;
        font-weight: bold;
        letter-spacing: 6px;
        color: white;
    }
}
.glitch{
    position: relative;
    filter: invert(1);
    animation: glitchwiggle 1s infinite;
}
.glitch>.glitch-text{
    mix-blend-mode:multiply;
    position: absolute;
}
.glitch .placeholder{
    visibility: hidden;
}
.glitch-text.glitch-1{
    color: magenta;
    transform: rotate(var(--glitch-rotation));
}
.glitch-text.glitch-2{
    color: green;
    transform: rotate(calc(var(--glitch-rotation) * -1));
}
@keyframes glitchwiggle{
    0%{--glitch-rotation:0;}
    5%{--glitch-rotation:0.5deg;}
    10%{--glitch-rotation:0.75deg;}
    20%{--glitch-rotation:0.5deg;}
    90%{--glitch-rotation:0.25deg;}
    100%{--glitch-rotation:0;}
}