h1 {
  text-decoration: overline;
  font-style: oblique;
}

/* nav stuff */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative; */
  width: 80%;
  /* height: 450px; */
  /* overflow: auto; */

  flex-wrap: wrap;
  gap: 10px;
}

.nav-tile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 400px;
  margin: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.nav-tile:hover {
  transform: scale(1.1);
}

.nav-tile a {
  width: 100%;
  height: 100%;
  display: inherit;
  justify-content: inherit;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;

  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-weight: bolder;
}