html, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}

body {
  font-family: serif;
  background: #f5f5f5;
}

#container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.quote-section {
  min-width: 50%;
  display: flex;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
}

#author,
#content {
  margin: 0;
  color: #ab1f1f;
  font-size: 22px;
  line-height: 30px;
}

#author {
  font-size: 18px;
  float: right;
}
