body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #1F1F1F;
  color: whitesmoke;
  font-weight: bold;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #181818;
  padding: 1rem 2rem;
}

.logo, .navbar h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #38bdf8;
  margin: 0;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  background-color: #1F1F1F;
  color: #38bdf8;
  border-radius: 8px;
  border: 2px solid #38bdf8;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.nav-links li a:hover {
  background-color: #f97316;
  color: white;
  border-color: #f97316;
  cursor: pointer;
}

/* Main content */
main {
  padding: 20px;
}

/* Project box styling */
.text-box, .project {
  max-width: 700px;
  width: 90%;
  margin: 60px auto 20px auto;
  border: 1px solid #38bdf8;
  border-radius: 10px;
  padding: 20px;
  background-color: #1e1e1e;
  color: whitesmoke;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0px 0px 10px #00ffff44
}

/* Headings */
h2, h3 {
  text-align: center;
  color: #38bdf8;
}

/* Paragraph spacing */
.text-box p, .project p {
  margin-bottom: 1em;
}
