/* custom CSS goes here */

/* hide elements */
.sort-options {
  display: none;
}
.bio {
  display: none;
}

/* custom styles */

@font-face {
  font-family: "Hockey";
  src: url("/hockey.ttf");
}
body {
  font-family: "Hockey", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
}

header {
  background-color: #63a;
  .logo,
  .date-range-header {
    color: white;
  }
}

footer {
  text-align: center;
  margin-bottom: 4rem;
}

/* bio etc */
.profile-info {
  align-items: start;
}
@media (max-width: 480px) {
  .profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* do not select arrows (breaks mobile view) */
.modal-nav,
.slideshow-nav {
  user-select: none;
}
