:root {
  --light-blue: rgba(0,119,255,1);
  --dark-gray: rgba(36,40,45,1);
}

* {
  font-family: 'IBM Plex Mono', monospace;
  color: white;

}

body {
  min-height: 100vh;
  width: 100vw;
  background-attachment: fixed;
}

a {
  color: var(--light-blue);
  text-decoration: underline;
}

h2 {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.navbar {
  position: fixed;
  width: 100vw;
  z-index: 1;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  outline-color: silver;
  outline-style: solid;
  outline-width: thin;
}

.navbar-brand {
  font-family: 'Lobster', cursive;
  text-decoration: none;
}

.nav-link {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-decoration: none;
}

.large-brand-content h1 {
  list-style: none;
  font-family: 'Permanent Marker', cursive;
  font-size: 20vw;
  background: rgb(238,129,0);
  background: linear-gradient(10deg, rgba(238,129,0,1) 0%, rgba(255,204,68,1) 75%, rgba(255,227,19,1) 100%);
  background-size: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.large-brand-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(5% + 56px);
  padding-bottom: 5%;
  width: 100%;
}

.splatter-background {
  background-image: url("./images/finesplatter.svg");
  background-size: 150vh;
  background-position: center;
  min-height: 100vh;
  width: 100%;
}

.night-sky-background {
  min-height: 100vh;
  width: 100%;
  background: rgb(7,3,102);
  background: linear-gradient(15deg, rgba(7,3,102,1) 0%, rgba(10,10,130,1) 50%, var(--light-blue) 100%);
  background-attachment: fixed;
}

.center-text {
  text-align: center;
}

.flex-column {
  display: flex;
}

.reading-pane {
  min-width: 950px;
  max-width: 950px;
  background: var(--dark-gray);
  flex-grow: 1;
  flex-shrink: 0;
  padding-left: 2em;
  padding-right: 2em;
  padding-bottom: 3em;
  padding-top: 2em;
  display: flex;
}

.reading-pane-padding {
  padding-top: 70px;
  flex-direction: column;
}

.gallery {
  column-count: 3;
  column-gap: 1%;
}

.gallery img {
  width: 100%;
  padding: 4%;
}

.strong-divide {
  margin: 0;
  border-top-width: 60px;
  border-color: var(--dark-gray);
}

.author-page {
  width: 100%;
}

.author-page img {
  width: 40%;
  float: left;
  padding: 1em;
  margin-right: 1em;
  margin-bottom: 1em;
}

.author-page div {
  padding: 1em;
}

.darken-background-two {
  width: 100%;
  background: rgb(65,73,83);
  background: linear-gradient(180deg, rgba(65,73,83,0.8525603991596639) 0%, rgba(14,14,15,0.7525603991596639) 100%);
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.centered-rows {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.centered-rows > h2, .centered-rows > p {
  text-align: center;
}

.two-columns-two {
  display: flex;
  justify-content: space-around;
  
}

.two-columns-two > * {
  padding-left: 1em;
  padding-right: 1em;
  width: 45%;
}

.flex-display {
  display: flex;
}

.review {
  display: flex;
  width: 80%;
  box-sizing: content-box;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: .5em;
  margin-top: .5em;
  border-top: 1px silver solid;
  border-bottom: 1px silver solid;
}

.review  p {
  margin: 0.5em;
  margin-left: 1em;
}

.review > div > p:last-of-type {
  font-style: italic;
}

.review img {
  width: 60px;
  height: 60px;
  margin: 0.5em;
  box-sizing: border-box;
  clip-path: circle(28px at center);
}

.review:nth-child(2) img {
  background-color: purple;
}

.review:nth-child(3) img {
  background-color: orange;
}

.review:nth-child(4) img {
  background-color: blue;
}

.review:nth-child(5) img {
  background-color: green;
}

.review:nth-child(6) img {
  background-color: red;
}

@media screen and (max-width: 950px) {
  .reading-pane {
    width: 100%;
    min-width: unset;
  }
}

@media screen and (max-width: 750px) and (min-width: 450px) {
  .gallery {
    column-count: 2;
  }
}

@media screen and (max-width: 450px) {
  .gallery {
    column-count: 1;
  }

  h1 {
    font-size: 1.75em;
  }

  .author-page {
    display: flex;
    flex-direction: column;
  }

  .author-page img {
    width: unset;
  }

  .review {
    margin-left: 0;
    margin-right: 0;
    width: fit-content;
  }
}
