html, body{
    margin: 0;
    height: 100%;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
      background: linear-gradient(135deg, #8c00ff, #430a52, #13025c);
      background-size: 400% 400%;
      animation: gradientBG 5s ease infinite;

      color: white;
      font-family: Arial;
      text-align: center;
      padding-top: 100px;
    }
    
    .wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 100px;
      height: 100vh;
    }

    .left-wrap {
      width: 300px;
    }

    .right-wrap {
      width: 500px;
    }
    
    .slide {
      height: 100vh;
      scroll-snap-align: start;
      display: flex;
      justify-content: center;
      align-items: center;
      }

    button {
      padding: 12px 24px;
      font-size: 18px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
    }

    input {
        width: 300px;
        padding: 12px;
        border-radius: 12px;
    }
    
    textarea {
        width: 100%;
        height: 120px;
        margin-top: 20px;
        padding: 12px;
        border-radius: 12px;
    }

    #output {
        margin-top: 30px;
        white-space: pre-wrap;
    }

    @keyframes gradientBG {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 80px auto;
    max-width: 1000px;
    }

    .column {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .label {
      color:rgb(255, 255, 255);
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 12px;
    }

  .room-image {
    height: 420px;
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

  .arrow {
    font-size: 8rem;
    font-weight: bold;
    }

  .checklist {
    color:rgb(0, 0, 0);
    width: 300px;
    padding: 24px;
    border-radius: 16px;
    height: 360px;
    background: rgb(211, 210, 162);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    h1 {
      font-size: 60px;
    }

    p {
      font-size: 24px;
      color: #000000;
    }
    
  .wrap {
  display: flex;
  justify-content: center;
    }

  .typewriter {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid orange;
  letter-spacing: .1em;

  animation:
    typing 3s steps(40, end) forwards,
    blink-caret .75s step-end;
    }

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 80ch;
  }
    }

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
    }