* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  color: white;
  background: #000;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
   background: url('images/botaaks_bg.jpg') center center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* keep dark tint */
  backdrop-filter: blur(10px);          /* add blur */
  z-index: 1;
}


.center-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo {
  width: 420px;
  height: auto;
  margin-bottom: -60px;
}

.project-name {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
  padding: 0;

}

.tagline {
  font-size: 1.4rem;
  margin-top: -8px;
  margin-bottom: 15px;
  opacity: 0.8;
}


.login-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00ffcc;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #00cc99;
  transform: scale(1.05);
}

