@charset "utf-8";

.works-page h2 {
  text-align: center;
  font-family: 'Russo One', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  margin-bottom: 3rem;
}

.works-page a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}
.works-page a:hover .works-box {
  background-color: #078890;
}
.works-page a:hover .works-box h3 {
  color: #f7f7f7;
}
.works-page a:hover .works-box p {
  color: #f7f7f7;
}

.works-page a:last-child .works-box {
  margin-bottom: 5rem;
}

.works-box {
  display: inline-block;
  width: 30%;
  margin-left: 2.2%;
  margin-bottom: 1rem;
  padding: 3rem;
  background-color: #eee9e6;
  border-radius: 3rem;
  box-sizing: border-box;
  transition: all 0.3s;
}

.works-imgbox {
  margin-bottom: 0.5rem;
}

.works-imgbox img {
  width: 100%;
}

.works-box h3 {
  color: #333;
  text-align: center;
  margin-bottom: 0.2rem;
  transition: all .3s;
}

.works-box p {
  letter-spacing: 0.08rem;
  transition: all .3s;
}

@media screen and (max-width: 740px) {
  .works-page a {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .works-box {
    width: 100%;
    margin-left: 0;

  }
}