:root {
  --icon: #8f9ca9;
  --iconLight: #7d8a965d;
  --disabled: #f2f3f5;
  --lightRed: #f37878;
  --label: cadetblue;
}

.logo-icon {
  width: 0px;
  height: auto;
  animation: animatedLogo 2s ease-in-out forwards;
  opacity: 0;
  position: absolute;
  left: 5%;
  top: 5%;
}

.feature-icon {
  width: 32px;
  height: 32px;
  animation: animatedFeature 2s ease-in-out infinite forwards;
}

@keyframes animatedLogo {
  from {
    opacity: 0;
    filter: blur(10px);
    width: 10px;
  }
  to {
    opacity: 1;
    filter: blur(0px);
    width: 50px;
  }
}

@keyframes animatedFeature {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

body {
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
}
canvas {
  display: block;
  vertical-align: bottom;
}

#particles-js {
  position: absolute;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  background-image: url("../m_building_drop.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1 !important;
}
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.js-count-particles {
  font-size: 1.1em;
}
#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}
#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}
