* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-filter: contrast(120%);
  filter: contrast(120%);
  background-color: black;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  height: 99.74%;
  background-image: radial-gradient(
    2000px at 10% 130%,
    rgba(33, 39, 80, 1) 10%,
    #020409 100%
  );
}

.content {
  width: 100% auto;
  height: 100% auto;
}

#universe {
  width: 100% auto;
  height: 100% auto;
}

#footerContent {
  font-family: sans-serif;
  font-size: 110%;
  color: rgba(200, 220, 255, 0.3);
  width: 100%;
  position: fixed;
  bottom: 0%;
  padding: 20%;
  text-align: center;
  z-index: 20;
}

#footer {
  position: absolute;
  bottom: 0%;
  height: 300px;
  width: 100%;
}

#scene {
  height: 100%;
  position: absolute;
  left: 50%;
  margin-left: -768px;
}

a {
  text-decoration: none;
  color: rgba(200, 220, 255, 1);
  opacity: 0.4;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

a:hover {
  opacity: 1;
}

.txt {
  color: hsla(0, 0%, 0%, 0);
  text-shadow: #fff 0 0 10px;
  transition: text-shadow 2s cubic-bezier(0, 1, 0, 1);
}

@-moz-document url-prefix() {
  .txt {
    text-shadow: #fff 0 0 20px;
  }
}

#canvas {
  margin: 0 auto;
}
#pinkboard {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#heart {
  position: fixed;
  z-index: 2;
}
.namebox {
  color: #f1dadb;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.type_words {
  position: fixed;
  top: 2%;
  left: 10px;
  color: #f1dadb;
  padding: 20px;
  text-transform: lowercase;
}
@media screen and (max-width: 767px) {
  #pinkboard {
    zoom: 0.7;
  }
  .namebox {
    zoom: 0.5;
  }
}

#bg-rotator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.bg-slide.active {
  opacity: 0.2;
}
