body {
      background-color: #ebe4d4;
      color: #6c5450;
      font-family: Arial, sans-serif;
      text-align: center;
    }
    section {
      margin: 0 auto;
      padding: 150px 20px;
      background-color: #ebe4d4;
      width: 25%;
      max-width: 600px;
      height: auto;
    }
    section img {
      max-width: 100%;      
      height: auto;
    }
    section h1 {
      font-size: 28px;
      margin-bottom: 20px;
      font-family: 'Arial', sans-serif;
    }

    section h2 {
      font-size: 16px;
      margin-bottom: 15px;
    }
    section p {
      text-align: center;
    }
    .terms {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: left;
    }
    button {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #ebe4d4;
      color: #6c5450;
      border: 1px solid #6c5450;
      border-radius: 1px;
      cursor: pointer;
    }
    button:hover {
      background-color: #d6c3a3;
    }

@media screen and (max-width: 768px) {
  section {
    width: 90%;
    padding: 40px 5vw;
  }
  section h1 {
    font-size: 7vw;
  }
  section h2 {
    font-size: 5vw;
  }
  button {
    font-size: 5vw;
    padding: 12px 24px;
  }
}