@font-face {
  font-family: "Nimbus";
  src: url("./fonts/nimbus-mono.regular.otf");
}
* {
  padding: 0;
  margin: 0;
}
body {
  min-height: 100vh;
  width: 100vw;
  font-family: "Nimbus";
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0.5rem;
  box-sizing: border-box;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
h1 {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 1rem 0rem;
}
h2 {
  font-weight: 200;
  font-size: 0.8rem;
  line-height: 1.2rem;
  padding: 1rem 0rem;
}
p {
  font-size: 0.8rem;
  line-height: 1.1rem;
}
a {
  color: black;
}
a:hover {
  background-color: yellow;
  text-decoration: none;
}
footer {
  text-align: right;
}
footer p {
  line-height: 0.8rem;
}
@media (max-width: 768px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .container {
    grid-template-columns: 1fr;
  }
}
