body,
html {
  margin: 0;
  padding: 0;
  background:#FFD5EE;
}
* {
  touch-action: manipulation;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  position: relative;
  width: 100%;
  height: 100vh;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#c {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.loading {
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}


.loader{
  -webkit-perspective: 120px;
  -moz-perspective: 120px;
  -ms-perspective: 120px;
  perspective: 120px;
  width: 100px;
  height: 100px;
}

.loader:before{
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  width: 50px;
  height: 50px;
background: rgb(255,211,236);
background: linear-gradient(180deg, rgba(255,211,236,1) 65%, rgba(255,255,255,0) 100%);;
  animation: flip 1s infinite;
}

@keyframes flip {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(180deg)  rotateX(180deg);
  }
}

.header {
  position: relative;
  display: block;
  z-index: 100;
  /*top: 2em; left: 2em;*/
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
  /*tranform: translateX(-50%);*/
  max-width: 90%;
}

.footer {
  position: relative;
  /*display: block;*/
  z-index: 100;
  /*top: 2em; left: 2em;*/
  padding-bottom: 0;
  bottom: 0;
  margin-top: 30%;
  margin-left: auto;
  margin-right: auto;
  /*tranform: translateX(-50%);*/
  font-weight: bold;
  width:1200px;
}

@media only screen and (max-width: 600px) {
.header {
  position: relative;
  display: block;
  z-index: 100;
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

.footer {
  position: relative;
  display: block;
  z-index: 100;
  padding-bottom: 0;
  bottom: 0;
  margin-top: 95%;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  
}
}