* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fff;
}
.container {
  width: 100%;
  height: 100vh;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #666666;
  background: #faf7f0;
}
.notes {
  padding: 1em 0;
}
.caption {
  width: 570px;
  margin: 1em auto;
  padding: 1em 0;
  line-height: 2;
  text-align: center;
  background: #fff;
  border: 1px solid #dbd9d4;
}
#zoomImage {
  display: none;
}
#zoomImage.loaded {
  display: inline;
}
.copy {
  padding: 1em 0;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  background: #fff url(loader.gif) 50% 50% no-repeat;
}
@media screen and (max-width:767px) {
  body {
    pointer-events: none;
  }
  .caption {
    display: none;
  }
}