* {
  margin: 0;
  padding: 0;
}

body {
  padding: 20px;
  font-family: monospace;
  color: #fff;
  background: rgb(36, 36, 36);
}

.category {
  display: flex;
  flex-direction: column;
}
.category h2 {
  margin: 60px 0 25px 0;
  font-size: 30px;
}
.category#React h2 {
  margin-top: 0;
}
.category .category-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.category .category-items .category-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  height: 250px;
  background: salmon;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.2s all;
  position: relative;
  cursor: pointer;
}
.category .category-items .category-item img {
  position: absolute;
  inset: 0 0 0 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
}
.category .category-items .category-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  color: #fff;
  font-size: 38px;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.category .category-items .category-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: salmon;
  z-index: 1;
  transition: 0.3s;
  transform: scale(0);
  transform-origin: 50% 50%;
}
.category .category-items .category-item:hover::after {
  transform: scale(1);
}/*# sourceMappingURL=style.css.map */