@import url("fonts.css");

* {
  margin: 0;
}

body {
  font-family: "Mija", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 97.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212121;
  color: #fff;
  text-align: center;
}

a {
  color: #ffffff;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1020px;
}

.categorias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, max-content));
  grid-gap: 5px;
  justify-content: center;
}

.categorias div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2e2e2e;
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.categorias div h2 {
  font-size: 1.2rem;
  color: #4dd0e1;
  padding-bottom: 10px;
}

.categorias div a {
  font-family: "Nunito", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.categorias div.azul h2 {
  color: #4dd0e1;
}
.categorias div.verde h2 {
  color: #81c784;
}
.categorias div.rosa h2 {
  color: #f06292;
}
.categorias div.amarelo h2 {
  color: #fff176;
}
.categorias div.laranja h2 {
  color: #ff8a65;
}
.categorias div.laranja h2 {
  color: #ff8a65;
}
