*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Consolas",sans-serif;
    color: rgb(202, 202, 202);
    list-style-type: none;
}
body
{
    justify-content: center;
    align-items: center;
    background: black;
    
}
  body {
    color: #ffffff;
    background-color: #0c0b0c;
    margin: 0;
    font-family: "Consolas";
    padding-top: 60px; /* To prevent content from being hidden behind the fixed navbar */
    padding-bottom: 60px;
  }
.navbar {
  background-color: #0c0b0c;
  position: fixed;
  top: 0;
  width: 100%;
  /* This line adds space: 15px top/bottom, 20px left/right */
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 1000;
}



.brand {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 14px;
  display: inline-block;
  margin-left: 10px;
}

.nav-links a:first-child {
  margin-left: 0;
}

.nav-links a:hover {
  background-color: #575757;
  border-radius: 4px;
}

.content {
  padding: 20px;
}
.navbar {
  /* Initial styles */
  transition: top 0.3s;
}

.navbar-scrolled {
 background-color: rgba(51, 51, 51, 0.5); /* Semi-transparent background */
  backdrop-filter: blur(3px); /* The magic! This blurs the background */
  -webkit-backdrop-filter: blur(3px); /* For Safari compatibility */

  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.9s ease; /* Optional: smooth transition */
}
.brand
{
  color: #FFD700 !important;
  text-decoration: none;
}
