button {
    padding: 1rem 1rem;
    font-size: 1rem;
    border: none;
    color: #fff;
    background: #c445ff;
    cursor: pointer;
    border-radius: 45px;
}

button:hover {
    background: #f5ee71;
    color: #0d0d0d;
}

body {
    text-align: center;
    align-items: center; 
}

input { 
    width: 300px;
    height: 20px;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 45px;
    background: #0d0d0d;
    color: white; 
    border: 1.5px solid #c445ff;
}

.navbar ul {
    list-style-type: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    display: inline-flex; /* Display items in a row and make them inline */
}

.navbar {
    padding: 10px;
    text-align: center;
}

.navbar li {
    margin-right: 20px; /* Space between items */
}

.navbar a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline from links */
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer; /* Changes cursor to pointer */
}

.navbar a:hover{
    background: #f5ee71;
    color: #0d0d0d;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: white;
    background-color: #0d0d0d;
    h1 {
    color: #6fdc99; 
    font-family: 'DM Sans', sans-serif;
}
    h2 {
    color: #8de7f1;
}
}

div.navbar {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 80%;
    font-size: 20px;
    text-align: center;
}

body {
  background-color: #000000;
  color: #00ffff;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.about-container {
  text-align: center;
  margin-top: 80px;
  padding: 0 20px;
}

.about-container h1 {
  font-size: 42px;
  color: #c084fc; /* neon lavender */
  text-shadow: 0 0 10px #c084fc, 0 0 20px #c084fc;
  margin-bottom: 30px;
}

.about-box {
  background: rgba(255, 255, 255, 0.05); /* translucent box */
  border: 1px solid #00ffff;
  border-radius: 15px;
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  box-shadow: 0 0 20px #00ffff88;
}

.about-box p {
  color: #00ffff;
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 5px #c084fc, 0 0 10px #c084fc;
  }
  50% {
    text-shadow: 0 0 15px #c084fc, 0 0 30px #c084fc;
  }
  100% {
    text-shadow: 0 0 5px #c084fc, 0 0 10px #c084fc;
  }
}

.about-container h1 {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes boxPulse {
  0% {
    box-shadow: 0 0 10px #00ffff88;
  }
  50% {
    box-shadow: 0 0 25px #00ffffcc;
  }
  100% {
    box-shadow: 0 0 10px #00ffff88;
  }
}

.about-box {
  animation: boxPulse 3s ease-in-out infinite;
}

.glow-green::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;   /* stretch wider for full text length */
  height: 110%;  /* a bit taller */
  background: radial-gradient(
    ellipse closest-side,
    rgba(111, 220, 153, 0.6), /* soft green center */
    transparent 80%
  );
  border-radius: 50% / 70%; /* keep that oval shape */
  filter: blur(8px);
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}
