body {
 height: 100%;
}
#whatever {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#602da3+0,c17053+100 */
/*
  background: #602da3; /* Old browsers */
  background: -moz-linear-gradient(45deg, #602da3 0%, #c17053 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #602da3 0%,#c17053 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #602da3 0%,#c17053 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#602da3', endColorstr='#c17053',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  */
  /*
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  /*
  padding-top: 40px;
  padding-bottom: 40px;
  */
/*  background-color: #f5f5f5;
*/
}

/* loginBox styles */


a {
      color: #3AA5D1;
}

#landingContainer {
  overflow: hidden;
  background: white;
  width: 100%;
  max-width: 600px;
  min-width: 360px;
  position: absolute;
  box-shadow: 1px 1px 13px 2px #5151513b;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

#landingContainer.consent-state {
  max-width: 800px;
  top: 2vh;
  margin-bottom: 2vh;
}

canvas {
  position: fixed;
  z-index: -1;
  display: none;
}

#logoLarge{
  max-width: 350px;
  width: 100%;
  height: 312px;
  padding-top: 16px;
  transition: all 0.4s ease-in-out;
}
.register-state #logoLarge {
  height: 280px;
}
.consent-state #logoLarge {
  height: 180px;
}


@media screen and (min-width: 601px) {
  #landingContainer {
    left: calc(50vw - 300px);
  }
  #landingContainer.consent-state {
    left: 0px;
  }

  canvas {
    display:block;
  }
}

@media screen and (min-width: 801px) {
  #landingContainer.consent-state {
    left: calc(50vw - 400px);
  }

  canvas {
    display:block;
  }
}

@media screen and (min-height: 801px) {
  #landingContainer {
    top: calc(50vh - 400px);
  }
}
