/* elements */

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
  width: 100%;
}

body {
  background: #345;
  height: 100%;
  margin: 0;
  width: 100%;
}

main {
  padding: 0;
}

/* fake body */

.fake-body {
  color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 50;
  padding-top: 3rem;
}

/* Wrapper */

.Wrapper {
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

/* Wrapper canvas - used to position background images */

.Wrapper-canvas {
  position: relative;
  margin: 0 auto;
}

/* Wrapper content - constrain proportions */

.Wrapper-content {
  max-width: 400px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
}

/* Backgrounds - position below content */

.Background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 1;
}

.Background-static,
.Background-parallax-level-one,
.Background-parallax-level-two {
  background-image: url(./bg-static.png);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: center;
  background-size: contain;
  z-index: 2;
  transform: translate3d(0, 0, 0);
}

.Background-parallax-level-one{
  background-image: url(./bg-parallax-one.png);
}

.Background-parallax-level-two {
  background-image: url(./bg-parallax-two.png);

}

/* Blocks */

.Block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.Block-message {
  font-size: 4rem;
  text-shadow: 3px 3px 1px rgba(255, 255, 255, 0.5);
}

