body {
  background: #121212;
  background: linear-gradient(#121212, #121212);
  font-family: "Segoe UI", sans-serif;
}

/* Add this CSS to your style.css file */

.Holder, .TextBox {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.Holder {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.Title {
  padding-bottom: 5px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 800;
  font-size: 28pt;
  text-shadow: 0 1px 0 white;
}

.TextBox {
  margin: 1vh auto auto auto;
}

.MtuneIMG {
  padding-top: 15px;
  display: grid;
  place-items: center;
}

.SubTitle {
  padding-top: 10px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 100;
  font-size: 16pt;
  text-shadow: 0 1px 0 white;
}

.Loader {
  position: relative;
  margin: auto auto 2vh auto;
  width: 300px;
  height: 120px;
  background: #3c3c3c;
  border-radius: 6px;
  border: 1px solid #141414;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(255, 255, 255, 0.3), inset 3px 10px 15px #505050, 0 20px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  padding: 10px;
  font-size: 8pt;
  color: #6e6e6e;
  text-shadow: 0 1px 0 #282828;
}
.Loader .Loader__light {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  border: 1px solid #14143c;
  -webkit-animation: blink 1s alternate infinite;
          animation: blink 1s alternate infinite;
}
.Loader .Loader__drives {
  position: absolute;
  top: 30px;
  left: 46px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Loader .Loader__drives .Loader__drive {
  position: relative;
  border-radius: 3px;
  border: 1px solid #141414;
  box-sizing: border-box;
  background: #464646;
  height: 48%;
  width: 32%;
  margin-bottom: 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 2px 4px #505050;
}
.Loader .Loader__drives .Loader__drive:after, .Loader .Loader__drives .Loader__drive:before {
  display: block;
  content: "";
  position: absolute;
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  -webkit-animation: blink 1s alternate infinite;
          animation: blink 1s alternate infinite;
}
.Loader .Loader__drives .Loader__drive:after {
  top: 6px;
}
.Loader .Loader__drives .Loader__drive:before {
  bottom: 6px;
}
.Loader .Loader__drives .Loader__drive:nth-child(1):before {
  -webkit-animation-duration: 0.412s;
          animation-duration: 0.412s;
  -webkit-animation-delay: 0.764s;
          animation-delay: 0.764s;
}
.Loader .Loader__drives .Loader__drive:nth-child(1):after {
  -webkit-animation-duration: 1.072s;
          animation-duration: 1.072s;
  -webkit-animation-delay: 0.994s;
          animation-delay: 0.994s;
}
.Loader .Loader__drives .Loader__drive:nth-child(2):before {
  -webkit-animation-duration: 0.192s;
          animation-duration: 0.192s;
  -webkit-animation-delay: 1.084s;
          animation-delay: 1.084s;
}
.Loader .Loader__drives .Loader__drive:nth-child(2):after {
  -webkit-animation-duration: 0.462s;
          animation-duration: 0.462s;
  -webkit-animation-delay: 1.214s;
          animation-delay: 1.214s;
}
.Loader .Loader__drives .Loader__drive:nth-child(3):before {
  -webkit-animation-duration: 0.182s;
          animation-duration: 0.182s;
  -webkit-animation-delay: 0.414s;
          animation-delay: 0.414s;
}
.Loader .Loader__drives .Loader__drive:nth-child(3):after {
  -webkit-animation-duration: 0.722s;
          animation-duration: 0.722s;
  -webkit-animation-delay: 1.174s;
          animation-delay: 1.174s;
}
.Loader .Loader__drives .Loader__drive:nth-child(4):before {
  -webkit-animation-duration: 0.602s;
          animation-duration: 0.602s;
  -webkit-animation-delay: 1.094s;
          animation-delay: 1.094s;
}
.Loader .Loader__drives .Loader__drive:nth-child(4):after {
  -webkit-animation-duration: 0.292s;
          animation-duration: 0.292s;
  -webkit-animation-delay: 0.664s;
          animation-delay: 0.664s;
}
.Loader .Loader__drives .Loader__drive:nth-child(5):before {
  -webkit-animation-duration: 0.862s;
          animation-duration: 0.862s;
  -webkit-animation-delay: 0.884s;
          animation-delay: 0.884s;
}
.Loader .Loader__drives .Loader__drive:nth-child(5):after {
  -webkit-animation-duration: 0.402s;
          animation-duration: 0.402s;
  -webkit-animation-delay: 0.544s;
          animation-delay: 0.544s;
}
.Loader .Loader__drives .Loader__drive:nth-child(6):before {
  -webkit-animation-duration: 0.692s;
          animation-duration: 0.692s;
  -webkit-animation-delay: 0.404s;
          animation-delay: 0.404s;
}
.Loader .Loader__drives .Loader__drive:nth-child(6):after {
  -webkit-animation-duration: 0.392s;
          animation-duration: 0.392s;
  -webkit-animation-delay: 0.454s;
          animation-delay: 0.454s;
}

@-webkit-keyframes blink {
  from {
    background: #646487;
    box-shadow: 0 0 0 transparent;
  }
  to {
    background: #a0a0ff;
    box-shadow: 0 0 15px #a0a0ff;
  }
}

@keyframes blink {
  from {
    background: #646487;
    box-shadow: 0 0 0 transparent;
  }
  to {
    background: #a0a0ff;
    box-shadow: 0 0 15px #a0a0ff;
  }
}