#Balls {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#Balls {
  color: transparent !important;
  background: none;
  border: none;
  text-shadow: 0 0 0 #000;
  cursor: pointer;
  outline: none;
}
h1{font-family: monospace;
font-size: 30pt;
 color: white;
text-align: center;}

h2{font-family: monospace;
font-size: 30pt;
text-align: center;
 color: white;}

h3{font-family: monospace;
font-size: 30pt;
text-align: center;
 color: white;}

p{font-family: monospace;
font-size: 30pt;
text-align: center;
 color: white;}

img{text-align: center;
padding-left: 610px;}

h1 {border: solid 5px;
padding: 10px;
background-color: #b00b69;
padding-left: 30px;}

#navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 210px;
    background-color: #000000;
    color: white;
    border: solid;
}

ul#navbar li a {
    display: block;
    color: white;
    font-weight:bold;
    padding: 8px 16px;
    text-decoration: none;
}

ul#navbar li a:hover {

    background-color: rgb(0, 183, 255);
    color: rgb(0, 0, 0);
}
body {
  background-color: rgb(0, 0, 0);
}
.center-img img {
  display: block;
  margin-left: 200;
  margin-right: auto;
}

.spiral-text-container {
  position: relative;
  width: 100vw;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spiral-text {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #000, #c00 40%, #ff0000 60%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px #c00) drop-shadow(0 0 32px #000) drop-shadow(0 0 48px #c00);
  animation: fire-glow 2s linear infinite;
  user-select: none;
  position: fixed;
  left: 50%;
  top: 20vh;
  transform: translateX(-50%);
  z-index: 2;
}
/* Only fire-glow animation remains for fire effect */

.spiral-text.bounce {
  animation: bounce-ball 1.2s cubic-bezier(.68,-0.55,.27,1.55) forwards, fire-glow 2s linear infinite;
}

@keyframes bounce-ball {
  0% { top: 20vh; }
  20% { top: 60vh; }
  40% { top: 80vh; }
  55% { top: 70vh; }
  70% { top: 80vh; }
  80% { top: 75vh; }
  90% { top: 80vh; }
  100% { top: 80vh; }
}

@keyframes fire-glow {
  0% {
    filter: drop-shadow(0 0 20px #b00b0b) drop-shadow(0 0 40px #ff4500) drop-shadow(0 0 60px #000);
  }
  50% {
    filter: drop-shadow(0 0 40px #ff4500) drop-shadow(0 0 80px #b00b0b) drop-shadow(0 0 100px #000);
  }
  100% {
    filter: drop-shadow(0 0 20px #b00b0b) drop-shadow(0 0 40px #ff4500) drop-shadow(0 0 60px #000);
  }
}

.spiral-text.at-bottom {
  top: 80vh;
  animation: fire-glow 2s linear infinite;
}

.spiral-text:hover {
  color: #ff4500;
}

.spiral-text-container:hover .spiral-text {
  animation: none;
  filter: none;
}

.laser, .fire {
  display: none;
}

