.page {
  min-height: 800px;
  background-color: white;
  width: 100%;
  position: absolute;
  overflow-y: hidden;
}
.page_row {
  display: flex;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
}
.page_row_item {
  padding: 20px;
}
.page_row_item_img {
  padding: 20px;
  min-width: 40%;
}
.page_row_item_img img {
  width: 100%;
}
.page_row_title {
  display: block;
  min-height: 20px;
  margin-left: 50px;
  margin-right: 50px;
  font-size: larger;
}
.page_row_spacer {
  display: block;
  min-height: 20px;
}
.page_row_spacer_edge {
  display: block;
  min-height: 100px;
}
.rounded_box {
  border-radius: 50px;
  background-color: white;
  opacity: 1.0;
}
.home_page {
  min-height: 1000px;;
  background-image: url('/images/scramble_b1_hero.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
.hero_title {
  font-size: 35px;
  margin-top: 150px;
  margin-left: 20%;
  margin-right: 20%;
  color: #333;
}
.hero_text {
  font-size: 25px;
  margin-top: 20px;
  margin-left: 20%;
  margin-right: 20%;
  color: white;
  text-shadow: 1px 1px 2px #666;
}
.link {
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}
@media (max-width: 800px) {
  .home_page {
    min-height: 600px;
  }
  .hero_title {
    font-size: 30px;
    margin-top: 100px;
  }
  .hero_text {
    font-size: 20px;
    margin-top: 20px;
  }
  .page_row {
    display: block;
  }
  .page_row_item {
    padding: 10px;
  }
  img.page_row_item {
    width: 80%;
    height: auto;
  }
}
@media (min-resolution: 200dpi) {
  .hero_title {
    font-size: 40px;
  }
  .hero_text {
    font-size: 30px;
  }
  .page_row {
    display: block;
    justify-content: center;
  }
  .page_row_item {
    padding: 10px;
    font-size: large;
  }
  img.page_row_item {
    width: 85%;
    height: auto;
  }
  p.page_row_item {
    font-size: x-large;
  }
  .page_row_title {
    font-size: xx-large;
  }
  .page_row_spacer {
    display: block;
    min-height: 40px;
  }
  .page_row_spacer_edge {
    display: block;
    min-height: 200px;
  }
}