@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
}

.wrapper {
  width: 960px;
  height: auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
}

.header {
  text-align: center;
  font-size: 75px;
  font-weight: 600;
  color: orange;
}

.content {
  margin: 35px 0;
}

.content .quote-area {
  display: flex;
  justify-content: center;
}

.quote-area i {
  font-size: 19px;
}

.quote-area i:first-child {
  margin: 3px 10px 0 0;
  color: red;
}

.quote-area i:last-child {
  display: flex;
  align-items: flex-end;
  margin: 0 0 3px 10px;
  color: red;
}

.quote-area .quote {
  font-size: 28px;
  text-align: center;
  word-break: break-all;
  color: #000;
}

.quote {
  text-align: center;
}

.author {
  display: flex;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 20px;
  justify-content: flex-end;
  color: darkcyan;
}

.author span:first-child {
  margin: -7px 5px 0 0;
  font-family: monospace;
}

.buttons {
  border-top: 2px solid #ccc;
}

.features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.features ul {
  display: flex;
}

.features ul li {
  list-style: none;
  margin: 0 10px;
  font-size: 28px;
  cursor: pointer;
  color: #3f3f3f;
  transition: all 0.3s ease;
}

.fa-heart {
  color: red;
}

#btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 17px;
  padding: 13px 22px;
  border-radius: 30px;
  background: #3f3f3f;
  color: #fff;
}