/* rolodex.css */
.rolodex {
  position: absolute;
  right: 0;
  top: 60px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  font-size: 0.8em;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px;
  z-index: 100;
}

@media (orientation: landscape) {
  .rolodex {
    flex-direction: row;
    top: unset;
    bottom: unset;
    height: 40px;
    width: calc(100% - 200px);
    left: 100px;
    right: 100px;
  }
}

.rolodex a {
  color: white;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
}

.rolodex a:hover {
  font-weight: bold;
}