body {
  margin: 0;
}
body #background {
  background-image: url(../images/bg.jpg);
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -500;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
}

#scrollableLayout {
  height: 100vh;
  display: grid;
  grid-template-rows: 5vh [header-start] 10vh [header-end content-start] 1fr [content-end] 1vh;
  grid-template-columns: 16vw [content-start] 24vw [narrow-start] auto [narrow-end] 24vw [content-end] 16vw;
}
#scrollableLayout main {
  grid-area: content;
  padding: 2.5vw;
  box-shadow: 0 0.4vw 0.8vw 0 rgba(0, 0, 0, 0.2), 0 0.6vw 2vw 0 rgba(0, 0, 0, 0.19);
}
#scrollableLayout main #content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 4vw;
}
#scrollableLayout main #content > header {
  text-align: center;
}
#scrollableLayout main #content > section {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  flex-wrap: wrap;
  min-width: 31vh;
}
#scrollableLayout main #content > section div {
  padding: 1vw 0.5vw 1vw;
  flex: 1 0 25vh;
}
#scrollableLayout main #content > section div .contentbox {
  margin: 2vh auto;
  border: 1px solid #000;
  padding: 2vh;
}
#scrollableLayout main #content > section div p {
  margin-bottom: 2vw;
  font-weight: 200;
}
#scrollableLayout main #content > section.first {
  text-align: center;
  line-height: 2em;
}
#scrollableLayout main #content > section.second img {
  height: 7em;
}
#scrollableLayout main #content iframe {
  height: 100%;
  width: 100%;
}
#scrollableLayout header h1 {
  color: #000;
  font-size: 3.4em;
}
#scrollableLayout h2 {
  font-size: 2.5em;
}
#scrollableLayout h3 {
  border-bottom: 1px solid;
  margin-bottom: 1vw;
  padding-top: 1vw;
}

header {
  grid-row: header;
  grid-column: content;
}

* {
  margin: 0;
  padding: 0;
  font-family: Overpass, sans-serif;
  color: #000;
  list-style: none;
  font-weight: 600;
}/*# sourceMappingURL=main.css.map */