  body {
      font-family: 'Poppins', sans-serif;
      background: #fff0f5;
      text-align: center;
      padding: 40px;
      color: #5c5c5c;
    }



.container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  width: 90%;
  margin: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-top: 15%;
}
    #quote {
      font-size: 1.2rem;
      margin: 20px 0;
      font-size: 50px;
    }
    button {
      background: #ffb6c1;
      color: white;
      border: none;
      padding: 20px 30px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: bold;
    }
    button:hover {
      background: #ff9db8;
    }


    @media screen and (max-width: 600px) {
  .container {
    padding: 20px;
    border-radius: 15px;
  }

  #quote {
    font-size: 1rem;
    line-height: 1.6;
  }

  h2 {
    font-size: 1.3rem;
  }

  button {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }
}




@media screen and (min-width: 1024px) {
  .container {
    max-width: 800px;
    padding: 60px;
  }

  #quote {
    font-size: 1.4rem;
    line-height: 2;
  }

  h2 {
    font-size: 2rem;
  }

  button {
    font-size: 1.1rem;
    padding: 14px 30px;
  }
}
