@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

body {
  margin: 0 auto;
  max-width: 800px;
  padding: 60px 30px;

  font-family: sans-serif;
}

.quote {
  border: 1px solid rgb(128 0 0 / 0.18);
  border-radius: 8px;
  padding: 20px 35px;
  margin: 10px auto;
  min-height: 100px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.quote .title {
  font-family: Libre Baskerville, serif !important;
  font-size: 28px;
  line-height: 1.6;
}

.quote .author-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
}

.quote .author-row .author-name {
  font-family: fantasy;
  font-size: 14px;
}

.quote .author-row .quote-index {
  font-weight: bold;
  font-size: 120%;
  opacity: 0;
}

.quote:hover .quote-index {
  opacity: 50%;
}
