body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.section {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.section.underline {
  border-bottom: 2px solid #000;
  flex-flow: column;
  height: auto;
}

.container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}

.container.underline {
  border-bottom: 2px solid #007495;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.container.content {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.image-container {
  width: 100%;
  max-width: 400px;
}

.image-container.special {
  border: 1px solid #aaa;
  max-width: 400px;
  margin-bottom: 20px;
}

.heading-1 {
  color: #007495;
  text-align: center;
  margin-bottom: 30px;
  font-family: PT Sans, sans-serif;
  font-size: 32px;
  line-height: 38px;
}

.body {
  font-family: PT Sans, sans-serif;
}

.paragraph {
  text-align: center;
  width: 80%;
  margin-bottom: 30px;
  font-size: 23px;
  line-height: 28px;
}

.paragraph.bold {
  font-weight: 700;
}

.paragraph.link {
  color: #007495;
  font-weight: 700;
  text-decoration: none;
}

.button {
  text-align: center;
  background-color: #007495;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 25px 50px;
  font-size: 24px;
  font-weight: 700;
}

.preview:hover {
  opacity: .6;
}

@media screen and (max-width: 991px) {
  .container.content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-container {
    max-width: 300px;
  }

  .heading-1 {
    padding-left: 0;
    padding-right: 0;
    font-size: 28px;
  }

  .paragraph {
    font-size: 20px;
    line-height: 24px;
  }

  .button {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container, .container.content {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .image-container {
    max-width: 280px;
  }

  .image-container.special {
    max-width: 300px;
  }

  .heading-1 {
    line-height: 32px;
  }

  .paragraph.bold {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 479px) {
  .image-container, .image-container.special {
    max-width: 250px;
  }

  .heading-1 {
    font-size: 22px;
    line-height: 24px;
  }

  .paragraph {
    width: 100%;
    font-size: 17px;
    line-height: 20px;
  }

  .paragraph.bold {
    margin-bottom: 10px;
  }

  .button {
    padding: 15px 30px;
  }
}


