.content img {
  width: 100%;
  height: 38rem;
  border-radius: 2.81rem;
}

.content .time {
  margin: 3.13rem 0 1.38rem;
  width: 22.44rem;
  height: 2.94rem;
  font-size: 2.5rem;
  color: #999999;
}

.header-top a {
  width: 4.06rem;
  height: 4.06rem;
}

/* .header-top h2 {
  font-size: 3.13rem;
  font-weight: 500;
  margin-left: -25rem;
} */

.title-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.title-box-left {
  width: 100%;
  font-size: 4.38rem;
  font-weight: bold;
  color: #000000;
  display: -webkit-box;
}

.title-box-more {
  width: 11.25rem;
  height: 6rem;
  line-height: 6rem;
  text-align: center;
  border-radius: 2.97rem;
  background: #000000;
  font-size: 2.5rem;
  color: #FFFFFF;
}

.holyfinger-logo {
  display: flex;
  align-items: center;
  width: 40.38rem;
  height: 7.19rem;
  margin: 5.56rem 0 4.06rem 3.5rem;
}

.holyfinger-logo p {
  margin: 0 1.5rem 0 1.19rem;
  font-size: 3.63rem;
  color: #000000;
}

.hylogo {
  width: 7.19rem;
  height: 7.19rem;
}

.yeslogo {
  width: 3.31rem;
  height: 3.31rem;
}

.container {
  font-size: 2.63rem;
  line-height: 4.69rem;
  color: #3D3D3D;
  margin-bottom: 3.5rem;
}

.container p {
  margin-bottom: 3rem;
}

.button {
  width: 55%;
  height: 6.5rem;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  padding: .88rem 1.56rem;
  border-radius: 5rem;
  font-size: 2.63rem;
  cursor: pointer;
}

.button span {
  position: relative;
  z-index: 1;
}

.button::before {
  content: "";
  position: absolute;
  inset: .4rem;
  background: #272727;
  border-radius: 5rem;
  transition: 0.5s;
}

.button:hover::before {
  opacity: 0.7;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  border-radius: 5rem;
  transition: 0.5s;
  opacity: 0;
  filter: blur(5rem);
}

.button:hover:after {
  opacity: 1;
}