/* NAV */
.main-nav {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%; */

  height: 5vh;
  padding: 8px 8px 0 8px;

  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.main-nav a {
  font-family: Times-now;
  text-decoration: none;
  color: #111;
}

.main-nav a:active {
  border-bottom: #111 dashed 1px;
}

.main-nav-right a {
  margin-left: 1em;
}

.index-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding-top: 1em;
}

/* example loading screen */
.spinner-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: white;
}
.gif-loading {
  height: 35%;
  width: auto;
}
