:root {
  --text-h3: 1.3em;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}

body {
  max-width: 100vw;
  background-color: #191818;
  overflow-x: hidden;
}

#RETURN {
  height: 80px;
  position: absolute;
  left: 2em;
  top: 2em;
}

.left-box {
  position: fixed;
  height: 100vh;
  width: 35vw;
  background-color: #191818;
  /* background-color: darkblue; */
  /* opacity: 0.5; */
}

.left-box .dither {
  height: 100vh;
  position: absolute;
  right: 0%;
  padding: 0;
  margin: 0;
  z-index: 100;
}

.right-box {
  width: 64vw;
  min-height: 100vh;
  background-color: #E8E7E2;
  position: relative;
  left: 35vw;
}

.right-box .photo-grid {
  padding: 2em;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  text-align: center;
}

.photo img {
  width: 100%;
  padding: 0 0.5em;
  text-align: center;
}

.description {
  font-size: 0.8em;
  color: #191818;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  padding: 1.5em 0 2em 0;
  font-style: italic;
}

.about {
  position: absolute;
  left: 2em;
  bottom: 2em;

  font-weight: 300;
  letter-spacing: 0.3em;
  color: #E8E7E2; 
  text-transform: uppercase;
  font-size: .9em;
}

.back-button {
  position: fixed;
  bottom: 102em;
  left: 10em;
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  opacity: 0.6;
  z-index: 1000;
  transition: opacity 0.2s ease;
  font-family: monospace;
  user-select: none;
}

.back-button:hover {
  opacity: 1;
}