html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
}

/* Logo Mitte */
.logo-click {
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -50px;
}


/* Logo in den Ecken */
.top-left {
  position: fixed;
  top: 10px;
  left: 10px;
}

.top-right {
  position: fixed;
  top: 10px;
  right: 10px;
}

.bottom-right {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.bottom-left {
  position: fixed;
  bottom: 10px;
  left: 10px;
}

.wrapper {
  padding-left: 6em;
  padding-right: 6em;
}

/* Text in Spalten */
.text {
  font-size: 11px;
  line-height: 16px;
  font-family: "IBM Plex Mono", monospace;
  color: #979797;
  margin-top: 150vh;
  margin-bottom: 30vh;
}

.text a {
  text-decoration: underline;
  color: #979797;
}

.copyright {
  margin-top: 3vh;
  text-align: center;
}

.policy { padding: 40px; }

/* Responsiv Grid */
@media screen and (min-width: 800px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3em;
    row-gap: 6em;
  }
  .policy { padding: 100px; }
}
@media screen and (max-width: 800px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 3em;
    row-gap: 3em;
  }
  .text {
    font-size: 11px;
    line-height: 16px;
    font-family: "IBM Plex Mono", monospace;
    color: #979797;
    margin-top: 150vh;
    margin-bottom: 20vh;
  }
  /* Logo in den Ecken Mobile*/
  .top-left {
    top: 20px;
    left: 20px;
  }

  .top-right {
    top: 20px;
    right: 20px;
  }

  .bottom-right {
    bottom: 20px;
    right: 20px;
  }

  .bottom-left {
    bottom: 20px;
    left: 20px;
  }
}
