/* DO NOT MODIFY! */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;

  font-family: Helvetica;
  font-size: 20px;
  line-height: 1.5;
}

h1 {
  font-family: Garamond;
  font-size: 60px;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

ul {
  padding-left: 50px;
}

.button {
  font-family: Helvetica;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background-color: DarkSeaGreen;
}

.table {
  box-sizing: border-box;
  padding-top: 75px;
  padding-bottom: 75px;
}

.row {
  margin: auto;
  max-width: 2048px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 100px;
  padding-right: 100px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding-left: 25px;
  padding-right: 25px;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

#banner {
  width: 100%;
  height: 100%;
}

#banner-images {
  position: absolute;
  font-size: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#banner-text {
  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;

  background-color: Black;
  color: White;
}

.black-on-white {
  color: Black;
  background-color: White;
}

.white-on-black {
  color: White;
  background-color: Black;
}

.selection {
  font-style: italic;
}

.options {
}

.option {
  color: DimGray;
  cursor: pointer;
}

.option:hover {
  color: White;
}

.option.selected, .option.selected:hover {
  color: DarkSeaGreen;
  /* color: Red; */
}
