

/*The background image*/

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('images/construction.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*The page's contents and the nav bar*/
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6); /* optional: dark translucent strip */
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #b287ff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links .active {
  border-bottom: 2px solid #b287ff;
}

