* {
  box-sizing: border-box;
}

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

html {
  padding: 0;
}

body {
  background-color: #d7020b;
}

/* .content {
  position: fixed;
  width: 70%;
  max-width: 300px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.container {
  position: fixed;
  top: 60px;
  right: 0;
  bottom: 60px;
  left: 0;
  display: flex;
  overflow: auto;
  -webkit-box-align: start;
  align-items: start;
}

.content {
  position: relative;
  margin: 20px auto;
  width: 70%;
  max-width: 300px;
  text-align: center;
}

.title {
  width: 80%;
  display: block;
  margin: auto;
  margin-bottom: 40px;
}

.banner {
  width: 80%;
  display: block;
  margin: auto;
  margin-top: 60px;
}

.ox {
  display: block;
  margin: auto;
  width: 60%;
}

.slogan {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

.slogan.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in;
}

.node {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 20px auto;
  width: 40px;
}

.trspt {
  position: fixed;
  bottom: 0;
  left: 0;
  line-height: 0;
  right: 0;
  margin: 20px auto 30px auto;
  width: 60px;
}

.houx {
  position: fixed;
  width: 50px;
  margin: 10px;
}

.houx-tl {
  top: 0;
  left: 0;
}

.houx-tr {
  top: 0;
  right: 0;
  transform: rotate(180deg)
}

.houx-bl {
  bottom: 0;
  left: 0;
}

.houx-br {
  bottom: 0;
  right: 0;
  transform: rotate(180deg)
}

.star {
  width: 40px;
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto 10px;
}

.star-l {
  left: 0;
}

.star-r {
  right: 0;
}

/* Lines */
.line-h {
  height: 5px;
  width: calc(50% - 110px);
  position: fixed;
  background-size: auto;
  background-repeat: repeat-x;
  background-image: url('/images/line-h.svg')
}

.line-h-tl {
  top: 28px;
  left: 70px;
}

.line-h-tr {
  top: 28px;
  right: 70px;
}

.line-h-bl {
  bottom: 35px;
  left: 70px;
}

.line-h-br {
  bottom: 35px;
  right: 70px;
}

.line-v {
  width: 5px;
  height: calc(50% - 110px);
  position: fixed;
  background-size: auto;
  background-repeat: repeat-y;
  background-image: url('/images/line-v.svg')
}

.line-v-tl {
  top: 70px;
  left: 25px;
}

.line-v-tr {
  top: 70px;
  right: 25px;
}

.line-v-bl {
  bottom: 70px;
  left: 25px;
}

.line-v-br {
  bottom: 70px;
  right: 25px;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.poo {
  width: 20%;
  position: absolute;
  bottom: 30%;
  left: 43%;
  transform: scale(0);
}

.poo.animate {
  animation: poo 1s infinite ease;
  animation-delay: .6s;
}


@keyframes poo {
  0% {
    transform: scale(0);
    bottom: 32%;
  }

  20% {
    transform: scale(0.6);
    bottom: 28%;
  }

  100% {
    transform: scale(1);
    bottom: 10%;
  }
}

.eye-open {
  opacity: 1;
  animation: eye_open 1s infinite ease;
}

.eye-close {
  opacity: 0;
  animation: eye_close 1s infinite ease;
}

@keyframes eye_open {
  0% {
    opacity: 1;
  }

  49% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes eye_close {
  0% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  99% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Media queries */

@media (min-height: 600px) {
  .container {
    -webkit-box-align: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .content {
    width: 50%;
  }
}

@media (min-width: 1400px) and (min-height: 900px) {
  .content {
    max-width: 50%;
    width: 500px;
  }
}

@media (min-width: 1400px) {
  .node {
    width: 60px;
  }

  .trspt {
    margin: 20px auto 45px auto;
    width: 80px;
  }

  .houx {
    width: 80px;
  }

  .line-h {
    height: 8px;
    width: calc(50% - 160px);
  }

  .line-h-tl {
    top: 40px;
    left: 110px;
  }

  .line-h-tr {
    top: 40px;
    right: 110px;
  }

  .line-h-bl {
    bottom: 50px;
    left: 110px;
  }

  .line-h-br {
    bottom: 50px;
    right: 110px;
  }

  .line-v {
    width: 8px;
    height: calc(50% - 160px);
  }

  .line-v-tl {
    top: 110px;
    left: 25px;
  }

  .line-v-tr {
    top: 110px;
    right: 25px;
  }

  .line-v-bl {
    bottom: 110px;
    left: 25px;
  }

  .line-v-br {
    bottom: 110px;
    right: 25px;
  }
}