*{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Animation */
.slide-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: translateY(0);
}
  
  .thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 150px;
    background-color: #fff;
    text-align: center;
  }
  
  h1 {
    font-size: 7rem;
    background: linear-gradient(#ffbd1f, #086498);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
  }
  
  .message {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .image-container {
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    width: 100%;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    .message {
      font-size: 1.5rem;
    }

    .thanks {
      padding: 0px;
      height: 50vh;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
    .thanks {
    margin-top: 10vh;

}
  
    .message {
      font-size: 1.2rem;
    }
  }
  