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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  user-select: none;
}

.wrapper {
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 60%; /* Set a fixed width here */
  max-width: 80dvw; /* Optional: To limit the maximum width */
  margin: 25px auto; /* Center the wrapper horizontally */
  height: fit-content;
  max-height: 50%;
  background-color: #fff;
}

.quote {
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
  max-height: 80%;
}

.author {
  font-style: italic;
  color: #818181;
}

.getQuote {
  background-color: #2a7918;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.getQuote:hover {
  background-color: #27b300;
}

a {
  color: #333;
  font-size: large;
  margin-bottom: 15px;
}

#all-apps {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
  cursor: pointer;
  background-color: #ffa4a4;
  padding: 5px;
  border-radius: 5px;
  font-weight: 500;
}
#all-apps:hover {
  background-color: coral;
}

/* Media query for phones and tablets */
@media screen and (max-width: 767px) {
  .quote {
    font-size: 15px;
  }

  .getQuote {
    font-size: 15px;
  }
}
