/* :root{
    --backcol:#d4a3e3;
} */
/* body,h1 {font-family: "Raleway", sans-serif}*/
/* body, html {
    background-color: #fefbf8;
    height: 100%
} */
/* .center {
    width: 50%;
  } */
div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
  
body {
  width:100vw;
  height:100vh;
  overflow:hidden;
  padding:0;
  margin:0;
  /* background:black; */
  color:#aaa;
  font-family:monospace;
  text-align:center;
}

#c {
  width:60vh;
  height:60vh;
  padding:30px;
  /* box-shadow:0 0 15px 5px rgba(255, 255, 255, 0.801); */
  position:absolute;
  left:calc((100vw - 67vh)/2);
  top:20vh;
  font-size:0;
  overflow:hidden;
  /* animation: bgColor 5s infinite linear; */
  /* background-image: url('../assets/nasa-astronaut.svg');
  background-repeat: no-repeat;
  background-position: center; */
  /* background:#ffffff; */
}

.block {
  width:calc(60vh / 5);
  height:calc(60vh / 5);
  display:inline-block;
  border-radius:50%;
  z-index: 999;
}

.block2 {
  width:calc(60vh / 5);
  height:calc(60vh / 5);
  display:inline-block;
  border-radius:50%;
  animation: scale_animation 5s;
}

#particle-canvas {
  width: 100%;
  height: 100%;
  /* z-index: -1; */
}


@keyframes scale_animation {
  0%   {transform:scale(0);}
  50%  {transform:scale(2);}
  100% {transform:scale(0);}
}
