.banner {
  width: 100%;
  height: 760px;
  background-image: url(../assets/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
}

.herostuff {
  position: relative;
  width: 350px; 
  height: 350px;
  margin-bottom: 40px; 
  margin-top: -20px;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  z-index: 1;
}

.mic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2; 
}

@keyframes alert-glow {
  0% {
    box-shadow: 0px 3px 27px rgba(0, 255, 136, 0.5);
  }
  50% {
    box-shadow: 0px 0px 50px 5px rgba(0, 255, 136, 0.7);
  }
  100% {
    box-shadow: 0px 3px 27px rgba(0, 255, 136, 0.5);
  }
}

.new {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 15px;
  padding: 8px 16px;
  background-color: #00FF88;
  color: #1A0B2E;
  border-radius: 1000px;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  animation: alert-glow 1.5s infinite ease-in-out;
}

.banner h1 {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.banner p {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.buttonarea {
  display: flex;
}

.btn2 {
  font-weight: 600;
  color: #00FF88;
  font-size: 1rem;
  border: 1px solid #00FF88;
  border-radius: 10000px;
  padding: 12px 16px;
  transition: opacity 0.3s;
  background-color: transparent;
  margin-left: 8px;
}

.btn2:hover {
  cursor: pointer;
  opacity: 0.9;
}