@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Mea+Culpa&family=Special+Elite&display=swap");

:root {
  --boxes: #b1c2e1;
  --text: #000;
  --dark: #4f678b;
}

body {
  background-color: #e6dbd1;
  background: url("https://i.imgur.com/VpMI9VI.png");
  background-repeat: repeat;
  font-family: "Baskervville", serif;
}

a {
  display: block;
  white-space: nowrap;
  background-color: var(--dark);
  width: 100%;
  padding: 25px 0;
  margin: 10px 0;
  color: white;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  background-color: #859bbb;
  color: black;
}

h1 {
  font-family: "Mea Culpa", cursive;
  font-size: 2.25em;
  color: var(--dark);
  padding: 5px 0;
  margin: 5px;
  text-align: center;
}

#header {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
}

.nav, .review {
  background-color: var(--boxes);
  overflow: auto;
}
.nav {
  width: 30%;
  height: 245px;
  padding: 15px 15px 0 15px;
}
.review {
  width: 61.5%;
  height: 200px;
  padding: 15px;
  border: 15px solid var(--boxes);
}

#quotes {
  width: 90%;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  text-align: justify;
}

.qu {
  display: inline-block;
  width: 28.5%;
  height: 150px;
  overflow: auto;
  background-color: var(--boxes);
  color: var(--text);
  margin: 15px 0;
  text-align: center;
  text-align: justify;
  text-justify: inter-word;
  align-content: center;
  padding: 25px;
}
.qu::first-letter {
  font-family: "Mea Culpa", cursive;
  font-size: 150%;
  line-height: 0.5em;
}

.cit {
  font-size: 0.8em;
  margin-top: 0.15em;
  text-align: right;
  font-style: italic;
}
.cit::before {
  content: "p. ";
}

p {
  margin-top: 0;
  margin-bottom: 0;
  text-indent: 2em;
}


#quotes::after {
  display:inline-block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: transparent;
}

