@charset "utf-8";

.index-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: monospace;
  box-sizing: border-box;
  color: #333331;
  background-color: rgba(0, 0, 0, 0);
  /* border: solid 3px #f1f1f1; 
    border-radius: 8px; */
}

.index-nav a {
  color: inherit;
  text-decoration: none;
  padding: 0em 1em;
  text-align: center;
  border-right: solid 3px;
  cursor: cell;
}

.index-nav a:last-child {
  border-right: none;
}

.arrow-down {
  position: relative;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #d0e799;
}

.arrow-up {
  position: relative;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #d0e799;
}

@media screen and (max-width: 500px) {
  .index-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .index-nav a {
    margin: 1em 0em;
    border-right: none;
  }
}
