main {
  width: 100vw;
  height: 100%;
  display: grid;
  /* justify-items: center;
  justify-content: flex-start;
  align-items: center;
  align-content: center; */
  grid-template-rows: repeat(2, 1fr);
  margin: auto;
}

a {
  text-decoration: none;
}

.ul-w {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

ul {
  padding: 3rem;
}

.back {
  color: white;
}

ul li {
  font-family: alegreya-sans, sans-serif;
  font-weight: 800;
  font-size: 4vh;
  display: block;
}

ul li:hover {
  background: rgb(0, 174, 239);
  background: linear-gradient(
    45deg,
    rgba(0, 174, 239, 1) 23%,
    rgba(38, 34, 98, 1) 50%,
    rgba(239, 65, 54, 1) 77%
  );
}

.breadcrumbs {
  position: absolute;
  left: 3vw;
  top: 3vw;
  font-family: "Montserrat";
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.breadcrumbs > .sep {
  vertical-align: middle;
}

.breadcrumbs .logo {
  height: 2rem;
}

a.breadcrumbs-cat {
  box-sizing: border-box;
}

a.breadcrumbs-cat:hover {
  border-bottom: 0.75rem solid white;
}

.sep {
  font-size: 1.5rem;
}
