@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap");

.font-poppins {
  font-family: "Poppins", sans-serif;
}
.font-indie-flower {
  font-family: "Indie Flower", cursive;
}
.font-inter {
  font-family: "Inter", sans-serif;
}
.font-sans-serif {
  font-family: sans-serif;
}

.container-quote {
  width: 70%;
  height: auto;
  margin: auto;
  margin-top: 50px;
  background-color: #333;
  border-radius: 12px;
}

.quote {
  margin-bottom: 12px;
}

.circle-content {
  display: flex;
}

.circle {
  height: 20px;
  width: 20px;
  border-radius: 100%;
  display: block;
  position: relative;
  top: 10px;
  left: 20px;
  margin-right: 8px;
}

.red {
  background-color: red;
}
.yellow {
  background-color: yellow;
}
.green {
  background-color: green;
}

.show-quote {
  color: white;
  display: block;
  font-size: 3rem;
  padding: 20px 0;
}

.show-creator {
  color: white;
  display: block;
  font-size: 1rem;
  padding: 0 20px 10px 20px;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.btn-primary {
  background-color: #1e40af;
  color: white;
  border: none;
}
.btn-primary:hover {
  background-color: #1e3a8a;
  cursor: pointer;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.select {
  padding: 0.4rem 0.2rem;
  border-radius: 0.5rem;
}
.select:hover {
  background-color: #f1f5f9;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .container-quote {
    width: 95%;
  }

  .show-quote {
    font-size: 1.2rem;
    margin: 0 20px;
    padding: 15px 0;
  }

  .show-creator {
    font-size: 1rem;
    padding: 0 20px 10px 20px;
  }

  .circle {
    height: 10px;
    width: 10px;
  }
}
