/* Reset defaults to remove extra white space */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none
}

.main-nav {
  position: fixed;    /* Keeps it at the top while scrolling */
  top: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.8); /* Transparent black overlay */
  z-index: 1000;      /* Ensures it stays above other content */
  display: flex;
  align-items: center;
  background-color: black;
}

.main-nav a {
  color: white;
  font-weight: bold;
}

.nav-container {
  display: flex;      /* Fixes white space gaps between links */
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

/* Add padding to the top of your body content so the fixed nav doesn't hide it */
body {
  padding-top: 60px;
}