@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

body {
  background: #111;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 100vh;
}

body img {
  width: 30%;
}

body .downloads {
  font-size: 3em;
  width: 60vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 80px;
}

body .downloads .bt {
  border: 3px solid #fff;
  padding: 10px;
  -webkit-transition: 1s;
  transition: 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body .downloads .bt:nth-child(1) {
  -webkit-animation: rnbw linear 10s infinite;
          animation: rnbw linear 10s infinite;
}

body .downloads .bt:nth-child(1):hover {
  -webkit-animation: rnbw linear 1s infinite;
          animation: rnbw linear 1s infinite;
  letter-spacing: 10px;
}

body .name {
  font-size: 3.5em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

body .name * {
  margin: 0 10px;
}

body .name .jaba {
  -webkit-animation: off1 linear infinite 20s;
          animation: off1 linear infinite 20s;
}

body .name .is {
  -webkit-animation: off2 linear infinite 15s;
          animation: off2 linear infinite 15s;
}

body .name .you {
  -webkit-animation: off3 linear infinite 20s;
          animation: off3 linear infinite 20s;
}

@-webkit-keyframes rnbw {
  0%,
  100% {
    border: 3px solid red;
    background: rgba(255, 0, 0, 0.1);
  }
  12% {
    border: 3px solid orange;
    background: rgba(255, 165, 0, 0.1);
  }
  25% {
    border: 3px solid yellow;
    background: rgba(255, 255, 0, 0.1);
  }
  37% {
    border: 3px solid limegreen;
    background: rgba(50, 205, 50, 0.1);
  }
  50% {
    border: 3px solid lightskyblue;
    background: rgba(135, 206, 250, 0.1);
  }
  62% {
    border: 3px solid blue;
    background: rgba(0, 0, 255, 0.1);
  }
  75% {
    border: 3px solid blueviolet;
    background: rgba(138, 43, 226, 0.1);
  }
  87% {
    border: 3px solid purple;
    background: rgba(128, 0, 128, 0.1);
  }
}

@keyframes rnbw {
  0%,
  100% {
    border: 3px solid red;
    background: rgba(255, 0, 0, 0.1);
  }
  12% {
    border: 3px solid orange;
    background: rgba(255, 165, 0, 0.1);
  }
  25% {
    border: 3px solid yellow;
    background: rgba(255, 255, 0, 0.1);
  }
  37% {
    border: 3px solid limegreen;
    background: rgba(50, 205, 50, 0.1);
  }
  50% {
    border: 3px solid lightskyblue;
    background: rgba(135, 206, 250, 0.1);
  }
  62% {
    border: 3px solid blue;
    background: rgba(0, 0, 255, 0.1);
  }
  75% {
    border: 3px solid blueviolet;
    background: rgba(138, 43, 226, 0.1);
  }
  87% {
    border: 3px solid purple;
    background: rgba(128, 0, 128, 0.1);
  }
}
/*# sourceMappingURL=style.css.map */