* {
  box-sizing: border-box;
}

p {
  font-weight: 200;
  font-size: 0.75rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  writing-mode: vertical-rl;
}

p, h1, h2, h3 {
  color: #f5e634;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

body {
  /* background-image: linear-gradient(0deg, #222c37, #24303b); */
  background-color: #213746;
  height: 100vh;
  margin: 0 auto;
  padding: 0px;
}

.wrapper {
  margin: 0 auto;
  padding: 0;
  width: 95%;
}

ul {
  margin: 0 auto;
  padding: 0;
  /* width: 95%; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  grid-gap: 10px;
  justify-items: center;
  align-items: center;
  color: transparent;
}

li {
  list-style: none;
  transition: 300ms;
  filter: saturate(1) brightness(1.1);
  transition: 200ms;
  /* animation: hue 5s infinite linear; */
}

li:hover {
  filter: saturate(0);
}

/* @keyframes hue {
  from {
    filter: hue-rotate(0deg);
  }

  to {
    filter: hue-rotate(360deg);
  }
} */
img {
  width: 100%;
}

.mari {
  grid-row: 3 / span 2;
  grid-column: 1;
  writing-mode: vertical-rl;
  font-kerning: normal;
  letter-spacing: 5px;
  padding: 0;
  margin: 0;
  color: #f5e634;
  font-weight: bold;
  font-size: 3.5rem;
  text-align: center;
}

.copyright {
  text-align: center;
}

@media (min-width: 2000px) {
  ul {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-gap: 10px;
  }
}
