* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #2f4550;
  background-color: #ff5400;
}

.container {
  width: 605px;
  background: white;
  border-radius: 15px;
  padding: 30px 30px 25px;
}

.container header {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}

.container .content {
  margin: 35px 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: 22px;
  text-align: center;
}

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

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

.container .buttons {
  border-top: 1px solid #ccc;
}

.buttons .features {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}
.features ul {
  display: flex;
}
.features ul li {
  list-style: none;
  margin: 0 5px;
  height: 47px;
  width: 47px;
  color: #ff5400;
  border-radius: 50%;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff5400;
}
.features ul li:hover {
  font-size: 21px;
}
.buttons button {
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 13px 12px;
  border-radius: 30px;
  background: #ff5400;
}
.buttons button:hover {
  opacity: 0.8;
}

button.loading {
  opacity: 0.7;
  pointer-events: none;
}
