body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 24px;
  overscroll-behavior: none;
  width: 100vw;
  overflow: hidden;
}
body.infolayer-hidden .infolayer {
  display: none;
}
body .infobutton {
  position: fixed;
  bottom: 12px;
  left: 12px;
  background: transparent;
  color: black;
  line-height: 1;
  padding: 12px 24px;
  font-size: 24px;
  text-transform: uppercase;
  opacity: 0.5;
  transition: 0.3s opacity, 0.3s background, 0.3s border;
}
@media (max-width: 1000px) {
  body .infobutton {
    font-size: 16px;
    top: 12px;
    bottom: initial;
  }
}
body .buybutton {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: transparent;
  color: black;
  line-height: 1;
  padding: 12px 24px;
  font-size: 24px;
  text-transform: uppercase;
  border-radius: 36px;
  opacity: 0.5;
  transition: 0.3s opacity, 0.3s background, 0.3s border;
  border: 1px solid black;
  text-decoration: none;
}
@media (max-width: 1000px) {
  body .buybutton {
    font-size: 18px;
    width: calc(100% - 72px);
    margin-left: 12px;
    right: initial;
    text-align: center;
  }
}
body .buybutton:hover {
  opacity: 1;
  background: white;
  border: 1px solid white;
}
body .buybutton div {
  border: 0 none;
}
body canvas {
  width: 100vw;
  height: 100vh;
}
body .infolayer {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  display: table;
  width: 100%;
  height: 100%;
}
body .infolayer > div {
  display: table-cell;
  max-width: 500px;
  height: 300px;
  padding: 12px;
  vertical-align: middle;
  text-align: center;
}
@media (max-width: 1000px) {
  body .infolayer > div {
    left: 5vw;
    width: 80vw;
    margin-left: 0;
  }
}
body .infolayer > div > div {
  max-width: 600px;
  display: inline-block;
  text-align: left;
  position: relative;
  background: white;
  pointer-events: auto;
  color: black;
  padding: 24px;
  font-size: 1.2rem;
}
body .infolayer > div a {
  color: black;
}
body .infolayer > div #infolayer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  transform: rotate(45deg);
  font-size: 48px;
  cursor: pointer;
}
