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

body,
html {
  height: 100%;
  overflow: hidden;
}

body {
  background: rgb(1, 1, 1);
  color: white;
  display: flex;
  flex-direction: column;
  font-family: "Black Ops One", system-ui;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2)
  z-index: -1;
}

.navbar {
  display: flex;
  justify-content: space-around;
  height: 100px;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo {
  font-size: 2rem;
  background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu li {
  font-size: 1rem;
  transition: 0.4s;
  cursor: pointer;
}

.menu li:hover {
  transform: scale(1.2);
  background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn1 {
  color: white;
  padding: 10px 40px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
  transition: 0.4s;
  cursor: pointer;
}

.btn1:hover {
  transform: scale(1.2);
}

.mainarea {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  padding: 0 20px;
  text-align: center;
}

.text1 {
  margin-top: 30px;
  font-size: 3rem;
  background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
  
  .menu {
    gap: 30px;
    margin: 15px 0;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  .text1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .menu {
    flex-direction: column;
    gap: 15px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .text1 {
    font-size: 2rem;
  }
  
  .btn1 {
    padding: 8px 30px;
  }
}