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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: radial-gradient(
    circle,
    rgba(173, 224, 248, 1) 46%,
    rgba(33, 158, 188, 1) 100%
  );
}
.container {
  width: 550px;
  height: 450px;
}
.header {
  font-size: 1.2rem;

  color: #fff;
  background-color: #219ebc;
  padding: 5px;
  width: 80%;
  margin: 20px auto;
  border-radius: 5px;
}
.main-content {
  width: 100%;
  height: 300px;
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 0 10px #023047;
}
.main-content .text-area {
  font-size: 1.5rem;
  line-height: 1.5;
}
.main-content .person {
  font-size: 1.6rem;
  color: #023047;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
}
.button-area button {
  background-color: white;
  color: #219ebc;
  font-size: 1.3rem;
  padding: 10px 15px;
  margin-top: 20px;
  border-radius: 5px;
  font-weight: 700;
  border: 2px solid #219ebc;
}

.quote {
  color: #023047;
}

.button-area button:active {
  background-color: lightblue;
}

.button-area button:hover {
  background-color: #219ebc;
  color: white;
}
