@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: azure;
  min-height: 100vh;
}

.project-title {
  text-align: center;
  padding: 40px;
}

.quote-box {
  background-color: rgb(203, 186, 240);
  width: 90%;
  max-width: 700px;
  margin: 40px auto 0 auto;
  position: relative;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.author {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

/* Button */

.btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  display: flex;
  justify-content: center;
  margin: 20px auto 0 auto;
}

.btn-quote {
  width: 100px;
  height: 100px;
  display: block;
}

/* Responsive styles */
@media (max-width: 600px) {
  .quote-box {
    width: 98%;
    padding: 15px;
    font-size: 1rem;
  }
  .btn-quote {
    width: 60px;
    height: 60px;
  }
  .project-title {
    padding: 16px;
    font-size: 1.2rem;
  }
}
