html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: black;
}

.scroll-container {
  position: relative;
  width: 2000px;
  height: 1600px;

  background-image: url("../assets/rätsel5/background-mathe.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* exakt 2048x2048, kein Scaling */
  background-position: top left;
}


.code-input-wrapper {
  position: relative;
  top: 1390px;
  left: 866px;
  width: 300px;

  .form-container {
    position: relative;
    padding: 80px 100px;
    width: 100px;
    background: url(../assets/rätsel1/parchment.png) center / cover no-repeat;
    border: 4px solid #5b3e1d;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;

    input {
      width: 100px;
      padding: 0px;
      font-family: 'Cinzel', serif;
      font-size: 2rem;
      color: #3b2200;
      background: transparent;
      border: none;
      outline: none;
      text-shadow: 1px 1px #e6d6a8;
      text-align: center;
    }

    label {
      position: absolute;
      top: 0px;
      height: 70%;
      width: 100%;

      span {
        position: absolute;
        top: 35px;
        left: 51px;
        font-size: 1.6rem;
        width: 100%;
        color: #6b4d23;
        opacity: 0.8;
        font-style: italic;
      }

    }
  }

  .form-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    bottom: 30px;
    width: 100%;

    button {

      border: 0;
      outline: 0;
      cursor: pointer;
      color: rgb(60, 66, 87);
      background-color: rgb(255, 255, 255);
      box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      padding: 4px 8px;
      display: inline-block;
      min-height: 28px;
      transition: background-color .24s, box-shadow .24s;

      :hover {
        box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 3px 9px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
      }

    }
  }
}

.pokemon-button {
  background-color: transparent;
  border: none;
  border-radius: 200px;
  box-shadow: 0 0 50px #0ff, 0 0 30px #0ff;
  animation: glowbig 0.5s ease-in-out;
}

@keyframes glowbig {
  0% {
    box-shadow: 0 0 5px #00f, 0 0 10px #00f;
  }
  50% {
    box-shadow: 0 0 200px #0ff, 0 0 80px #0ff;
  }
  100% {
    box-shadow: 0 0 5px #00f, 0 0 10px #00f;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}