

@keyframes glowing {
    0% { filter: drop-shadow(0 0 0px rgb(242, 19, 39)); }
    100% { filter: drop-shadow(0 0 30px rgb(242, 19, 39)); }
}

#container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center; 
    align-items: center;
}

#svg1{
    width: 90vw;
    height: 90vh;
    filter: drop-shadow(0 0 10px rgb(242, 19, 39));
    animation: glowing 1.5s infinite alternate;
}

body {
  background-color: black;
  padding: 0px;
  font: 26px "Lucida Grande", Helvetica, Arial, sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
  height: 100vh;
  /* Ensures full height */
  margin: 0;
}