body {
  overflow-y: scroll;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;

  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-color: white;
}

main {
  color: black;
}

main section .title-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

main section .description-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main section a {
  color: black;
  text-decoration: none;
}

main section a:hover {
  text-decoration: underline;
  text-decoration-color: red;
  text-underline-offset: 0.3em;
}

main section .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

main section .img-box img {
  display: flex;
  justify-content: center;
  align-items: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main section .description-box .button-box {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

main section .description-box .button-box a button {
  background: black;
  color: white;
  border: 1px solid black;
  transition: 0.2s;
  cursor: pointer;
}

main section .description-box .button-box a button:hover {
  transform: scale(1.1);
}

@media (min-width: 1026px) {
  main {
    font-size: 1vw;
  }

  main section:nth-child(1) {
    padding-top: 3em;
  }

  main section {
    font-size: 1em;
    padding: 5em 0;
  }

  main section .title-box {
    margin-bottom: 2em;
  }

  main section h1 {
    font-size: 2em;
  }

  main section h2 {
    font-size: 1.25em;
  }

  main section .description-box .description-text {
    font-size: 1em;
  }

  main section .description-box .button-box a button {
    border-radius: 0.25em;
    padding: 0.375em 2em;
    font-size: 1.125em;
  }
}

@media (max-width: 1025px) {
  main {
    font-size: calc(0.5vw + 11px);
  }

  main section {
    font-size: 1em;
    padding-top: calc(0.75vw + 80px);
  }

  main section:nth-child(1) {
    padding-top: 3em;
  }

  main section:nth-last-child(1) {
    padding-bottom: calc(0.75vw + 80px);
  }

  main section .title-box {
    margin-bottom: 2em;
  }

  main section h1 {
    font-size: 2em;
  }

  main section h2 {
    font-size: 1.125em;
  }

  main section .description-box .description-text {
    font-size: 1em;
  }

  main section .description-box .button-box a button {
    border-radius: 0.5em;
    padding: 0.675em 2.25em;
    font-size: 1.25em;
  }
}
