body, h1, p, ul {
  margin: 0;
  padding: 0;
}


body {
  font-family: Arial, sans-serif;
  background-color: #19181A; /* Set the background color of the entire page */
  color: white; /* Set the default text color */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}
  
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  padding: 1.5rem 0.5rem; /* Reduce padding to make the header smaller */
}

header .container {
  display:flex;
  align-items: center center;
  justify-content: center; /* Align navigation to the right */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; /* Add some horizontal padding */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  nav ul li {
    margin: 0 1rem; /* Equal margin on both sides */
  }
  
  nav ul li a {
    color: rgb(255, 255, 255);
    opacity: 0.3;
    text-decoration: none;
    font-family:Arial, Helvetica, sans-serif;
    transition: color 0.5s ease, opacity 0.5s ease; /* Smooth transition over 0.5 seconds */
    font-weight: 100;
    font-size: 1rem;
  }
  
  header nav ul li a:hover {
    color: white;
    opacity: 1;
  }
  
  header nav ul li a.active {
    color: white;
    opacity: 1;
  }

  