#avatar {
  width: 98%;
  height: 98%;
}

#slogan {
  margin-top: 0%;
  margin-bottom: 0%;
}

body {
  font-family: "Helvetica", "MiSans", "Open Sans";
  text-align:center;
}
#img{
  margin: auto;
}
#img p{
  display: none;
  word-wrap: break-word;
  margin: 0 0 0 0;
}

a {
  text-decoration: none;
  color: rgb(99, 99, 99);
}


#title {
  /*font-family: "Noto Sans SC";*/
  font-family: "MiSans";
  font-weight: 900;
  background-image: linear-gradient(to right, orange, purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
  margin-bottom: auto;
}

#footer p {
  font-family: 'clicker script', 'segoe script', 'Comic Sans MS';
  font-size: 28px;
  display: inline;
}

/*Loading*/
.spinner {
  margin: 100px auto;
  width: 100px;
  height: 80px;
  text-align: center;
  font-size: 10px;
}

.spinner>div {
  background-color: rgb(0, 110, 255);
  height: 100%;
  width: 12px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  20% {
    -webkit-transform: scaleY(1.0)
  }
}

.loading {
  animation: hue 2s linear infinite;
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

@keyframes hue {
  from {
    filter: hue-rotate(0);
  }

  to {
    filter: hue-rotate(360deg);
  }
}

#progress {
  /* Positioning */
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  color: #35a935;
}

#progress::-webkit-progress-bar {
  background-color: transparent;
}

#progress::-webkit-progress-value {
  background-color: #35a935;
}

#progress::-moz-progress-bar {
  background-color: #35a935;
}
