.top {
  height: 500px;
  position: relative;
  background-image: url(../img/logo_gray.png);
  background-repeat: no-repeat;
  background-position: center 100px;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .top {
    background-size: contain;
    background-position: center center;
  }
}
.top h1 {
  font-family: "Dela Gothic One", cursive;
  font-size: 70px;
  position: absolute;
  bottom: -80px;
}
@media screen and (max-width: 767px) {
  .top h1 {
    font-size: clamp(30px, 40%, 70px);
    bottom: 0;
  }
}

#works h2 {
  margin: 50px auto 50px;
  text-align: center;
  font-family: "Dela Gothic One", cursive;
  font-size: 50px;
  display: flex;
  align-items: center;
}
#works .top_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #works .top_grid {
    display: block;
  }
}
#works .top_grid figure {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  #works .top_grid figure {
    margin: 30px;
  }
}
#works .top_grid figure img {
  width: 300px;
}
@media screen and (max-width: 767px) {
  #works .top_grid figure img {
    width: 100%;
  }
}
#works .top_grid figure figcaption {
  text-align: center;
  margin-top: 10px;
}/*# sourceMappingURL=index.css.map */