* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(145deg, rgb(54, 54, 54), rgb(19, 19, 19));
  background-size: 400% 400%;
  animation: animateBg 10s infinite;
}
@keyframes animateBg {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main .container {
  height: 560px;
  width: 900px;
  background-color: #1f1f1f;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 20px;
  align-self: center;
  position: relative;
  box-shadow: 2px 2px 10px #00000075;
}
@media (min-width: 1000px) {
  .main .container {
    border-radius: 10px;
  }
}
.main .container #title {
  text-align: center;
  font-size: 2.5em;
}
.main .container .visHolder {
  position: absolute;
  top: 6em;
}

.svg-container .bar {
  fill: #28badf;
}

.svg-container .bar:hover {
  fill: rgb(0, 76, 190);
}
#title{
  color: #6e5eff;
}
#tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  text-align: center;
  width: 150px;
  height: 50px;
  padding: 2px;
  font: 12px;
  background: #1b1b1b;
  color: #6e5eff;
  box-shadow: 1px 1px 10px black;
  border-radius: 5px;
  pointer-events: none;
}

#tooltip::before{
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  background-color: #1b1b1b;
  height: 15px;
  width: 15px;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.507)
}

.overlay {
  position: absolute;
  background: transparent;
  pointer-events: none;
}

#y-axis path {
  stroke: white;
  stroke-width: 1;
  fill: none;
}
#y-axis text{
  fill: white;
}

#x-axis path {
  stroke: white;
  stroke-width: 1;
  fill: none;
}

#x-axis text{
  fill: white;
}

footer{
  position: absolute;
  color: rgb(42, 137, 226);
  font-size: 1.5em;
  text-align: center;
  background-color: transparent;
  transform: translateY(40vh);
}
/*# sourceMappingURL=style.css.map */
