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

body {
  background-color: rgb(35, 35, 35);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.wrapper {
  width: 600px;
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 0 20px;
}

.wrapper h1 {
  text-align: center;
}

.wrapper .content {
  margin: 20px 0;
}

.content .quote-area {
  display: flex;
  justify-content: center;
}

.quote-area i {
  font-size: 15px;
}

.quote-area i:first-child {
  margin: 3px 10px 0 0;
}

.quote-area i:last-child {
  display: flex;
  align-items: flex-end;
  margin: 0 0 3px 10px;
}

.quote-area .quote {
  font-size: 20px;
  text-align: center;
}

.author {
  display: flex;
  margin-top: 20px;
  font-size: 16px;
  font-style: italic;
  justify-content: flex-end;
}

.author span:first-child {
  margin: -7px 5px 0 0;
  font-family: monospace;
}

.wrapper .buttons {
  border-top: 1px solid rgb(0, 123, 223);;
}

.buttons .features {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}

.features ul {
  display: flex;
}

.features li {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
  margin: 0 5px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 2px solid rgb(0, 123, 223);;
  color: rgb(0, 123, 223);
  transition: all 0.3s ease;
}

.features li:hover {
  background-color: rgb(0, 123, 223);
  color: white;
  transform: scale(1.2);
}

.features button {
  outline: 0;
  border: 0;
  height: 40px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  background-color: rgb(0, 123, 223);
  padding: 5px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.features button:hover {
  color: rgb(0, 123, 223);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 123, 223);
}

button.loading {
  border: 0;
  background-color: white;
  color: rgb(0, 123, 223);
  opacity: 0.7;
  pointer-events: none;
}
