html {
  box-sizing: border-box;
  background-color: black;
}

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

.fixed-full {
  z-index: 1;
  position: relative;
  width: 100%;
  float: left;
  clear: both;
  background-color: red;
}

.fixed-bounds {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  background-color: yellow;
}

.full {
  width: 100%;
  z-index: 10;
  position: relative;
  float: left;
  clear: both;
}

.bounds {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.formbox {
  border-radius: 25px;
  padding: 25px;
  width: 40%;
  background-color: rgba(16, 119, 112, 0.3);
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 25px;
  margin-right: 25px;
  border: 2px solid #fff;
  color: #fff;
  display: none;
}

/* MONSTER ANIMATION */
.monsterbox {
  margin-left: 40%;
  flex: 1;
  /* position: relative; */
  /* perspective: 100px; */
}

.monsterbox > .monster {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  transform: translateZ(2px);
}

.monsterbox > .grad {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  transform: translateZ(1px);
}

.monsterbox > .tagline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateZ(3px);
}

.monsterbox > .logo {
  position: absolute;
  bottom: 0;
  top: 0;
  width: 50%;
  transform: translateZ(4px);
  left: 50%;
}

@media only screen and (max-width: 700px) {
  .monsterbox {
    margin-left: 0;
  }

  .formbox {
    width: auto;
  }
}