@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace, sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #fff;
}

a {
  color: rgb(0, 255, 255);
}
a:hover {
  color: rgb(0, 255, 255);
  text-shadow: 0 0 10px, 0 0 20px, 0 0 40px, 0 0 80px;
}
a:visited {
  color: rgb(255, 72, 176);
}
a:visited:hover {
  color: rgb(255, 72, 176);
  text-shadow: 0 0 10px, 0 0 20px, 0 0 40px, 0 0 80px;
}

.neon-text {
  color: #fff;
  text-shadow: 0 0 10px violet, 0 0 20px deeppink, 0 0 40px magenta, 0 0 80px fuchsia;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #242424;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
header .logo h1 {
  font-family: "M PLUS 1 Code", monospace, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
}

.nav-items {
  list-style: none;
}
.nav-items li {
  display: inline-block;
  margin: 0 15px;
}
.nav-items li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 10px;
  border-radius: 5px;
}
.nav-items li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff;
}

/* .neonTurnedOffText {
  color: rgba(166, 0, 255, 0.2);
  -webkit-text-stroke: 1px #484052;
} */
#hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}
#hero h1 {
  font-family: "Roboto Mono", monospace, sans-serif;
  font-size: 4rem;
  margin-bottom: 0.5rem;
}
#hero h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}
#hero .cta {
  display: flex;
  gap: 1.5rem;
}

/*# sourceMappingURL=main.css.map */
