@import url(common.css);
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100&family=Zen+Kaku+Gothic+Antique:wght@300;400&display=swap");

main h1 {
  font-size: 30px;
  padding-bottom: 20px;
}
@media screen and (max-width: 950px) {
  main h1 {
    font-size: 15px;
    padding-bottom: 10px;
  }
}

main section {
  background-color: #363636;
  margin-bottom: 50px;
  padding: 40px 30px 60px 30px;
}

main section h2 {
  font-family: "Heebo", sans-serif;
  text-align: center;
  font-size: 30px;
  color: #fff;
  padding-bottom: 40px;
}

main section div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}
@media screen and (max-width: 767px) {
  main section div {
    display: unset;
  }
}

main section p {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #c5c5c5;
  flex: 1;
}
@media screen and (max-width: 767px) {
  main section p {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  main section p {
    font-size: 15px;
    line-height: 25px;
  }
}

main section p a {
  font-size: 15px;
  text-decoration: none;
  text-align: right;
  color: #c5c5c5;
  border: 1px solid #c5c5c5;
  padding: 0px 10px;
  display: inline-block;
  margin-top: 25px;
}

main section p a:hover {
  background-color: rgba(197, 197, 197, 0.3);
}
