/*---------------------------------------------
  Font
---------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/*---------------------------------------------
  Utility
---------------------------------------------*/

body {
  margin: 0;
  background: #161f36;
  font-family: 'Montserrat', sans-serif;
}

/*---------------------------------------------
  Preloader
---------------------------------------------*/

#preloader-background {
  background: #0a0e19;
  background-image: url('../img/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

#status {
  padding-left: 10px;
  padding-right: 10px;
}

#status > h1 {
  color: #f0f7fc;
  font-size: 35px;
  text-align: center;
  margin: 0;
}

#center-image {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 200px;
}

#preloader {
  background-image: linear-gradient(60deg, #0a0e19 10%, transparent 100%);
  color: #ededed;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

#center-image {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: spinner;
  animation-name: spinner;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes spinner {
  0%, 10% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  90%, 100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes spinner {
  0%, 10% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  90%, 100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*---------------------------------------------
  Home Page
---------------------------------------------*/

#header .overlay-color {
  background-image: linear-gradient(120deg, #0a0e19 1%, transparent 100%);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#header .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -12;
  filter: blur(5px);
}

#header > .content {
  position: absolute;
  top: 38%;
  transform: translateY(-38%);
  text-align: center;
  width: 100%;
  z-index: 2;
}

#header .item {
  display: inline-block;
}

#header a {
  vertical-align: middle;
  position: relative;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: buttonup;
  animation-name: buttonup;
}

#header a > img {
  height: 16vh;
  transition: .5s;
  filter: sepia(1);
}

#header a:hover > img {
  transform: scale3d(1.1, 1.1, 1.1);
  transition: .5s;
  filter: sepia(0);
}

#header a > .desc {
  transition: .5s;
  background: #22222282;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  top: 10px;
  border: 2px solid #fff;
  transform: scale3d(1, 1, 1);
}

#header a:hover > .desc {
  border: 2px solid #1b93d0;
  color: #1b93d0;
  transform: scale3d(1.1, 1.1, 1.1);
}

img.logo {
  width: 500px;
  display: block;
  margin: 0 auto;
  animation-name: zoom;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

#header .server-info {
  width: 500px;
  margin: 20px auto;
  padding: 10px;
  background-color: #22222282;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #ffffff;
}

#header span {
  font-weight: bold;
}

.btn-copy {
  background-color: #e67526;
  border-radius: 30px;
  padding: 6px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  margin-left: 5px;
  box-shadow: 0 0 0 rgba(230,117,38, 0.4);
  animation: inpulse 2s infinite;
}

.ball {
  position: fixed;
  border-radius: 100%;
  opacity: 0.7;
}

/*---------------------------------------------
  Animation
---------------------------------------------*/

@keyframes zoom {
  from { transform: scale(1); }
  50% { transform: scale(0.85); }
  to { transform: scale(1); }
}

@-webkit-keyframes inpulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes inpulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

/*---------------------------------------------
  Responsive
---------------------------------------------*/

@media screen and (max-width: 550px) {
  .server-info {
    width: 80% !important;
  }
}

@media screen and (max-width: 520px) {
  img.logo {
    margin-top: 10vh;
    width: 400px;
  }
}

@media screen and (max-width: 400px) {
  img.logo {
    width: 300px;
  }
}

@media screen and (max-width: 339px) {
  img.logo {
    margin-top: 40vh;
    width: 300px;
  }
}

@media screen and (max-width: 300px) {
  img.logo {
    width: 200px;
  }
}