/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* body {
  background-color: white;
  color: black;
  font-family: Verdana;
} 
*/
/* full page coverage 
html, body, div{
            display: grid;
            align-items: center;
            height: 100vh;
            background-color: #48075F;
        }
        .parent {
            margin: auto;
            width: 25vw;
            height: 25vw;
            display: flex;
            position: absolute;
        }
        .para {
            width: 50px;
            height: 50%;
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            transform-origin: bottom center;
            color: #2ad4f9;
            font-size: 50px;
        } 
        */
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    background: radial-gradient(circle, #303030, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: HotPink;
} 

/* style of button */
#explosion-button{
  padding: 15px 40px;
  font-size: 20px;
  font-family: 'comic sans', sans-serif;
  color: #fff;
  background: linear-gradient(45deg, #ff7300,#ffca00);
  border:none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,165,0,0.5);
  transition: all 0.3s ease;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 30%;
  left: 50%;
}

/* hover and click */
explosion-button:hover {
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow 0 6px 25px rgba(255,200,0,0.8);
}
explosion-button:active {
  transform: translate(-50%,-50%) scale(1);
  box-shadow 0 2px 19px rgba(255,140,0,0.6);
}
    /* particle effect canvas whatever dat is */
    #particle-canvas {
      position:absolute;
      top: 0;
      left: 0;
      