body {
  background-color: #630101
}

h1 {
  font-size: 50px;
}

.fire-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.fire-particle {
  position: absolute;
  bottom: 100%;
  width: 5px;
  height: 10px;
  background: orange;
  border-radius: 50%;
  opacity: 0.8;
  /* Add a subtle glow */
  box-shadow: 0 0 8px rgba(255, 69, 0, 0.8);
  animation: fall linear infinite;
}

/* The animation uses custom properties to set different angles and horizontal shifts */
@keyframes fall {
  0% {
    transform: translate(0, 0) rotate(var(--rotateStart, 0deg));
    opacity: 1;
  }
  100% {
    transform: translate(var(--moveX, 0px), 100vh) rotate(var(--rotateEnd, 360deg));
    opacity: 0;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #35070d;
  position: fixed;
  width: 40%;
  top: 0;
  left: 28%;
  z-index: 9999;
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
  font-family: 'notitle';
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  color: white;
}

.navbar .logo i {
  margin-right: 8px;
  margin-left: 8px;
}

.navbar {
  display: flex;
  align-items: center;
  margin-right: 65px; 
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  display: flex;
  align-items: center;
  font-size: 26px;
  transition: all 0.2s ease-in-out;
}

.navbar a i {
  margin-right: 8px;
}

.navbar a:hover {
  color: #ff9bcb;
}