::-moz-selection {
  background: rgba(190, 255, 215, 0.99);
  color: black;
}
::selection {
  background: rgba(190, 255, 215, 0.99);
  color: black;
}

@keyframes fade {
  0% {
    opacity: 0;
    filter: grayscale(0%);
  }
  50% {
    filter: grayscale(100%);
  }
  100% {
    opacity: 1;
    filter: grayscale(0%);
  }
}

/* @font-face {
  font-family: 'SctoGroteskA-Light';
  src: url(sctogroteska-light.woff2), url(sctogroteska-light.woff);
} */

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

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 18px;
  line-height: 1.6;
  color: white;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  cursor: crosshair;
}

h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 36px;
  line-height: 1.2;
}

p {
  margin: 20px 0 20px 0;
}

.info {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  background-color: white;
  color: rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  z-index: 0;
  transition: left 0.5s;
}

.intro {
  width: 75%;
}
.intro p {
  font-size: 24px;
  line-height: 1.4;
}
.intro h1 {
  padding-bottom: 1em;
}

table {
  width: 50%;
  margin-top: 2em;
}
th {
  text-align: left;
  border-bottom: 1px solid black;
}

td {
  font-size: 18px;
}

/* nav.open{
  left:  0;
} */

main {
  position: relative;
  z-index: 0;
  background-color: black;
  max-height: 100vh;
  transition: transform 0.75s;
  transition-timing-function: ease-in-out;
  overflow-x: hidden;
}

main.open {
  transform: translate(50%, 0);
}

.statement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  width: 80%;
  transition: opacity 0.75s;
  transition-timing-function: ease-in-out;
}
.statement h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 72px;
  color: white;
  text-align: center;
}

/* .statement.open{
  opacity: 1;
}
 */
a.toggle-nav {
  position: fixed;
  top: 0;
  left: 0;
  padding: 24px;
  text-decoration: none;
  color: white;
  font-size: 36px;
  z-index: 999;
  transition: left 0.75s;
  transition-timing-function: ease-in-out;
}
a.toggle-nav.open {
  left: 50%;
}
section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
section div {
  width: 350px;
}
section div.content {
  margin: 0 0 0 60px;
}
div.slides {
  height: 475px;
  position: relative;
  transition: margin-left 0.75s, opacity 0.75s;
  transition-timing-function: ease-in-out;
  opacity: 1;
  overflow-x: hidden;
}
div.slides.open {
  margin-left: -50%;
  opacity: 1;
}
div.slides img {
}
div.slides:hover {
  transform: rotate(1deg);
}




@media (max-width: 640px) {
  .statement h1 {
    font-size: 36px;
  }
  div.slides.open {
    transform: translate(75%, -100%);
    opacity: 0;
  }
  div.slides{
    text-align: center;
  }
  div.slides img {
    width: 50%;
  }
  .info {
    width: 100%;
    justify-content: flex-start;
  }
  main {
    transition: opacity 0.75s;
  }
  main.open {
    opacity: 0;
    background-color: white;
    height: 100vh;
  }
  .intro {
    width: 100%;
  }
  .intro p {
    font-size: 18px;
  }
  a.toggle-nav {
    width: 100%;
    text-align: center;
    bottom: 0;
  }
  a.toggle-nav.open {
    color: black;
    z-index: 2000;
    position: fixed;
    top: unset;
    left: 0;
    bottom: 0;
  }
  /*   main.open a.toggle-nav{
    color: black;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%,-20%);
  } */
  table {
    width: 100%;
  }
  td{
    font-size: 18px;
  }
}