html, body {
  width: 100%;
}

body {
  font: 18px PingFang SC, Lantinghei SC, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans;
  background-color: #07040e;
  margin: 0;
}

#canvas {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: none;
  max-width: 100%;
}

.content {
  position: absolute;
  z-index: 11;
  right: 0;
  left: 0;
  top: 0;
}

.splash {
  position: relative;
}

.home {
  position: relative;
}

.home .jumbotron {
  color: #e4e4e4;
  margin: 0;
  padding-top: 100px;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
}

.home .jumbotron .content {
  display: table-cell;
  vertical-align: middle;
}

.home .jumbotron .splash {
  display: table;
  width: 100%;
}

.home .jumbotron .description {
  margin: 0 auto 25px;
  position: relative;
}

.home .jumbotron .description:after {
  background: none;
  top: -24px;
  height: 2px;
  margin: 0 0 0 -28px;
  position: absolute;
  width: 56px;
  left: 50%;
  content: '';
}

.home .jumbotron h1 {
  background: -webkit-linear-gradient(#f64c59, #ffd400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #3bb1dc;
  font-size: 32px;
  font-weight: 100;
  line-height: 1.2;
  margin: 20px 0 30px;
  border-bottom: none;
}

@media (min-width: 480px) {
  .home .jumbotron h1 { font-size: 40px; }
}

@media (min-width: 768px) {
  .home .jumbotron h1 { font-size: 52px; }
}

.home .jumbotron img {
  max-width: 220px;
}

@media (min-width: 768px) {
  .home .jumbotron img { max-width: 320px; }
}

img#qq {
  max-width: 220px;
  background-size: cover;
  border-radius: 200px;
  box-shadow: 0 0 40px rgba(63, 81, 181, 0.72);
  border: 3px solid #de6c00;
  opacity: 1;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: all 1.0s;
}

img#qq:hover {
  box-shadow: 0 0 10px #fff;
  -webkit-box-shadow: 0 0 19px #fff;
  transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.content a {
  margin-top: 6px;
  margin-right: 1em;
}

a {
  color: #00f3ff;
  text-decoration: none;
}

a:focus, a:hover {
  color: #00618a;
  text-decoration: underline;
}

a:focus {
  outline: dotted thin;
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px;
}

.home p {
  font-size: 16px;
  font-weight: 100;
}

@media (min-width: 768px) {
  .home p { font-size: 18px; }
}

.copyright {
  font-size: 13px;
  padding-bottom: 18px;
  margin-top: 100px;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
}

@media (min-width: 768px) { .container { width: 760px; } }
@media (min-width: 992px) { .container { width: 980px; } }
@media (min-width: 1200px) { .container { width: 1180px; } }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
