body, html {
  height: 100%;
}

.bg {
  /* The image used */
  background-image: url("https://www.cryptotradesignals.live/dicetime/bg.jpg");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
ul,a{
  color:white
}
.text-center {
    text-align: center;
}

body, html {
  height: 1200px;

}
#fireworksContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    animation: explode 1.5s ease-out;
    pointer-events: none;
}

@keyframes explode {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(5);
    }
}
