* {
  padding: 0%;
  margin:0%;
  box-sizing: border-box
}

head {
  background-color: black;
}

body {
  width: auto;
  height: 100vh;
}

/* grid container */
.maingrid {
  height: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

/* grids for the grid container */
.links { 
  grid-area: 1 / 1 / 2 / 2; 
  font-size: larger;
  font-family: bigBeautifullFonts, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url(../img/gif1.gif);
  background-repeat: repeat;
  background-size: 50%;
  color: red;
  text-align: center;
  text-shadow: 0 5px rgba(0, 0, 0, .5);
}

.rechts { 
  grid-area: 1 / 2 / 2 / 3; 
  background-image: url(../img/skull.gif);
  background-repeat: repeat;
  background-size: 50%;
}

/* font for the text */
@font-face {
    font-family: bigBeautifullFonts;
    src: url(../fonts/Figerona.ttf);
}

.slideshow-container {
  margin: 20px;
  height: 50%;
  width: 50%;
  align-items: auto;
}
      
.mySlides {
  display: none;
  
}
      
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: rgb(0, 255, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
      
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
      
.prev:hover, .next:hover {
  background-color: rgba(0, 229, 255, 0.8);
}
      
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
      
      /* hover change */
.active, .dot:hover {
  background-color: #717171;
}
      
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
      
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
      
.css-typing p {
  border-right: .15em solid orange;
  font-family: "Courier";
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}

.css-typing p:nth-child(1) {
  width: 7.3em;
  -webkit-animation: type 2s steps(40, end);
  animation: type 2s steps(40, end);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
      
.css-typing p:nth-child(2) {
  width: 11.5em;
  opacity: 0;
  -webkit-animation: type2 2s steps(40, end);
  animation: type2 2s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
      
.css-typing p:nth-child(3) {
  width: 7.3em;
  opacity: 0;
  -webkit-animation: type3 5s steps(20, end), blink .5s step-end infinite alternate;
  animation: type3 5s steps(20, end), blink .5s step-end infinite alternate;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
      
@keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    border: none;
  }
}
      
@-webkit-keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    border: none;
  }
}
      
@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    opacity: 1;
    border: none;
  }
}
      
@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    opacity: 1;
    border: none;
  }
}
      
@keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
      
@-webkit-keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
      
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}
      
      /* ccs for the jumpscare */
#jumpscare {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
        
        #jumpscare img{
        width:100%;
        height:100%;
        object-fit: cover;
        }

    footer {
      background-color: transparent;
      color: rgb(255, 0, 0);
  
  }
  
  .fixed {
      position: fixed;
      bottom: 0;
      right: 0;
      width: 100%;
      
    }

    #invisible-button {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
