body {
  padding-top: 12vw;
}

section {
  padding: 4vw 0 8vw;
}

h1 {
  font-size: clamp(24px, 2vw, 38px);
  color: #323232;
}

h2 {
  font-size: clamp(20px, 1.67vw, 32px);
  color: #323232;
}

p {
  font-size: clamp(14px, 1.05vw, 20px);
  color: #323232;
}

a {
  font-size: clamp(14px, 1.05vw, 20px);
  color: #323232;
}

.txt-a {
  width: 300px;
  height: 60px;
  border-radius: 60px;
  margin: 0 auto;
  background: #409BD0;
  border: solid 2px #409BD0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.txt-a:hover {
  background: white;
  color: #409BD0;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 61px;
  }
  section {
    padding: 40px 0 60px;
  }
  .txt-p {
    width: 75%;
    margin: 0 auto;
  }
  .txt-a {
    font-size: 14px;
    width: 200px;
    height: 40px;
  }
}
/*# sourceMappingURL=page.css.map */