body,html {
  align-items: center;
  background-color: rgb(101, 24, 233);
  display: flex;
  font-family: "Roboto";
  font-size:5px;
  height: 100%;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
}

video {
  float: center;
  background-color: #eb1c8d;
  font-size: 11px;
}

h1 {
  background-color: rgb(129, 159, 93);
  font-size: 30px;
  height: 80px;
  width: 100%;
  text-align: center;
  border: 3px solid #e165b3;
  outline-color: rgb(196, 196, 116);
  font-family: 'Courier New', Courier, monospace;
  text-decoration-line: underline;
  color: hsl(139, 28%, 76%);
  text-align:center;
  
  
  }
      
*{
  box-sizing: border-box;
}

.audio-wrapper {
  display:block;
  width:100%;
  position:relative;
  top:0px;
}

.audio-wrapper.nebeneinander {
  width:45%;
  display:inline-block;
  text-align:center;
}

.audio-wrapper audio{
  margin: top 5px;
  display:block;
  background-color: rgb(1, 0, 4);
  border: 10px solid #92f309e8;;
  height: 20%;
  margin:0 auto;
}
  


.slider-outer-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-outer-wrapper .slider-inner-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-outer-wrapper .slider-inner-wrapper.is-animating {
  transition: all 400ms;
}

.slider-outer-wrapper .slider-inner-wrapper .slide {
  color: #c0a29b;
  font-size: 8rem;
  width: 100%;
  height: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.slider-outer-wrapper .slider-inner-wrapper .slide:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.slider-outer-wrapper .navigation {
  z-index: 2;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.slider-outer-wrapper .navigation button {
  cursor: pointer;
  width: 15px;
  height: 15px;
  border: none;
  background-color: rgb(22, 238, 72);
  border-radius: 15px;
  margin: 0 20px 0 0;
}

.slider-outer-wrapper .navigation button.bullet-active {
  background-color: #cddbb9;
}

.slider-outer-wrapper .navigation button:focus {
  outline: none;
}

.slider-outer-wrapper .navigation button:last-child {
  margin: 0 0 0 0;
}

.wrapper {
  height: 20vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}

.typing-demo {
  width: 15ch;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
}

.typing-demo-animation {  
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
}

@keyframes typing {
  from {
    width: 0;
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

h2 {
text-align: center;
background-color: rgb(217, 225, 209);
font-size: 70px;
border: 12px solid #063b1d;
text-decoration-line: underline;
letter-spacing: 65px;
border-inline-start-style: solid;
border-inline-start-width: 40px;
transform: translateY(-120px);
}

h2.fade-in-animation {  
animation: fade-in-top 9.5s forwards; 
}

@keyframes fade-in-top {  
  0%   {transform: translateY(-120px);}
  100%  {transform: translateY(0px);}
}
button {
  background-color: #c3b9cc;
  border: none;
  color: rgb(14, 220, 175);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}




