html {
  background-color: #21232f;
}

text{
  font-family: 'Silkscreen', cursive;
  font-weight: 700;
}

h1,
p {
  margin: 0px;
  color: #F3EAE3;
  
}

p,a{
  font-family: 'Sora';
  font-size: 25px;
  font-weight: 200;
}

h1{
  font-family: 'Sora';
  font-size: 70px;
}

.grid-container {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  padding: 20px;
}

.item-1 {
  grid-column: 1/5;
  grid-row: 1;
  display: flex;
  align-items: center;
}

.item-1-inner {
  padding: 20px;
}

.item-2 {
  grid-column: 4/6;
  grid-row: 1;
}


/*SVG Grafik*/

svg.svgwave {
  width: 100%;
  height: auto;
  overflow: hidden;
}

svg.svgwave path {
  fill: transparent;
}

.k1,
.kp3,
.kp18,
.kp19,
.kp20,
.kp5,
.kp17,
.kp16 {
  font-size: 10px !important;
  fill: #F3EAE3 !important;
}

.kp1,
.kp4,
.kp9,
.kp7,
.kp6,
.kp2 {
  font-size: 13px !important;
  fill: #F3EAE3 !important;
}

.kp8,
.kp14,
.kp11,
.kp12,
.kp15,
.kp13,
.kp10 {
  font-size: 5px !important;
  fill: #F3EAE3 !important;
}


@media only screen and (max-width:600px) {
  .item-1{
    grid-column: 1/6;
    grid-row: 2;
  }
  .item-2{
    grid-column: 1/6;
    grid-row: 1;
  }
p, h1{text-align:center;}
h1{
  font-size:35px;
  line-height:35px;
  padding-top:10px;
  padding-bottom:10px;
}
p{
  font-size:16px;
}
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(25, 24, 26);
  color: white;
  text-align: center;
  padding-top: 15px;
  padding-bottom:15px;
}

a{
  color:white;
  text-decoration: none;
  font-size:10px;
}


h1 span{
animation: flip 6s infinite;
display:inline-block;
animation-delay: calc(.1s * var(--i))
}
@keyframes flip {
0%,80% {
  transform: rotateY(360deg) 
}}