* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 37, 71);
  overflow: hidden;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}

.background {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}

.nav-bar {
  position: fixed;
  padding: 1em;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.666);
}

.nav-initials {
  font-family: "DM Serif Text", serif;
  color: white;
  font-size: 2em;
  font-weight: 100;
}

.main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote {
  font-weight: 200;
  font-family: "Montserrat", sans-serif;
  font-size: 4vw;
  width: 70vw;
  color: white;
}

.author {
  font-style: italic;
  font-weight: 200;
  font-size: 3vw;
}
