.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 8vh));
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.title > h1 {
  text-align: center;
  font-size: min(14rem, 10vw);
  font-weight: bold;
}
.title > svg {
  height: 50vh;
}
@media (max-width: 600px) {
  .title {
    flex-direction: column;
    gap: 5vw;
  }
  .title > svg {
    width: 50vh;
  }
}

.blogs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -10vh);
  gap: 2rem;
  display: flex;
}
@media (max-width: 600px) {
  .blogs {
    gap: 1rem;
    flex-direction: column;
  }
}
.blogs > a {
  font-size: min(1.7rem, 5vw);
  color: black;
  text-decoration: none;
  position: relative;
}
.blogs > a:hover, .blogs > a:focus, .blogs > a:active {
  color: #666;
}
.blogs > a:hover::after, .blogs > a:focus::after, .blogs > a:active::after {
  width: 100%;
  left: 0;
}
.blogs > a:active {
  color: #888;
}
.blogs > a:active::after {
  color: #888;
}
.blogs > a::after {
  content: "";
  position: absolute;
  height: 0.1rem;
  bottom: -0.3rem;
  background-color: #666;
  border-radius: 0.5rem;
  transition: width 300ms ease, left 300ms ease;
  width: 0;
  left: 50%;
}

/*# sourceMappingURL=index.css.map */
