body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.25rem; /* 20px based on default 16px */
  line-height: 1.75rem; /* 28px based on default 16px */
  color: black;
  background-color: white;
  min-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 2rem 0;
}

.sections {
  display: flex;
  flex-wrap: wrap;
}

section.left {
  width: 50%;
  height: 100vh;
  padding: 5%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  section.left {
    height: auto;
    padding: 10% 10% 0 10%;
    width: 100%;
  }
}
section.right {
  width: 50%;
  height: 100vh;
  padding: 0%;
  position: relative;
}
@media (max-width: 600px) {
  section.right {
    height: 100vw;
    width: 100%;
  }
}
section.right > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: none;
}
section.right > div.is-active {
  display: block;
}
section.right > div img {
  width: 100%;
}

p {
  margin: 0 0 1.75rem 0;
}

a {
  text-decoration: underline;
  color: black;
}
