@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
body, html {
  height: 100%;
  margin: 0;
  color: white;
  background-color: #000;
  font-family: 'Poppins', sans-serif;
  text-shadow: 5px 5px 10px #000000;
  overflow: hidden;
}

#particles-js{
  width: 100%;
  height: 100%;
  background-color: #34568b;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 5s ease-in-out;
-moz-transition: all 5s ease-in-out;
-o-transition: all 5s ease-in-out;
-ms-transition: all 5s ease-in-out;
transition: all 5s ease-in-out;
}

.topleft {
  position: absolute;
  top: 1%;
  left: 16px;
}

.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
  font-size: 16px;
  z-index: 100;
  text-decoration: none;
  color: white;
}

.select-none {
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  -o-user-select:none;
  user-select:none;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 13px;
}

hr {
  margin: auto;
  width: 40%;
}

@media (min-width: 768px) {  
  .middle {
  font-size: 30px;
}
}