@font-face {
  font-family: FiraGO-Medium;
  src: url(../fonts/FiraGO-Medium.ttf);
}
:root {
  --first-font: FiraGO-Medium;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main {
  background-color: white;
  width: 100%;
  padding-top: 72px;
  padding-left: 30px;
  padding-right: 30px;
}
.article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
article .image {
  width: 368px;
  height: 368px;
}
.article-title {
  font-family: var(--first-font);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 156.5%;
  text-align: center;
  font-feature-settings: "case" on;
  color: #424242;
  margin: 0px;
  margin-top: 76px;
  width: 100%;
  max-width: 465px;
}
.custom-btn {
  padding: 14px;
  width: 100%;
  max-width: 410px;
  text-align: center;
  height: 50px;
  background: #ffdd04;
  border-radius: 10px;
  font-family: "FiraGO";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #424242;
  margin-top: 52px;
  border: 0;
  text-decoration: none;
}

@media only screen and (max-width: 428px) {
  .main {
    padding-top: 60px;
  }
  article .image {
    width: 270px;
    height: 270px;
  }
  .article-title {
    width: 321px;
    height: 84px;
    font-size: 18px;
    max-width: 320px;
    text-align: center;
  }
  .custom-btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
    margin-top: 45px;
    padding: 15px;
  }
}
@media only screen and (max-width: 320px) {
  article .image {
    height: 220px;
    width: 220px;
  }
  article .article-title {
    margin-top: 33px;
    font-size: 15px;
    width: 100%;
    max-width: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .custom-btn {
    display: flex;
    margin-top: 51px;
    width: 100%;
    font-size: 13px;
    padding-left: 112px;
    padding-right: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
