body header .upscroll {
  display: none;
}
body main {
  display: flex;
  flex-direction: row;
}
body main .text {
  padding: 30px 5%;
  width: 65%;
  color: white;
  font-family: "Didact Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.4em;
}
body main .text h1 {
  text-align: center;
  padding: 20px;
  line-height: 1.2em;
}
body main .text p {
  padding: 4px;
}
body main .text ul {
  margin-left: 70px;
  margin-bottom: 20px;
}
body main .text img {
  padding: 10px;
}
body main .imgs {
  width: 35%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
body main .imgs img {
  align-self: center;
  width: 92%;
  border: 3px solid rgb(133, 133, 133);
}
body main img.viewimage {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  border: 3px solid rgb(133, 133, 133);
}
@media only screen and (max-width: 1080px) {
  body main img.viewimage {
    width: 80vw;
  }
  body main .imgs {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */