    html, body {
      margin: 0;
      padding: 0;
      height: 100%; /* ensures full coverage */
    }

    body {
      background: url("/background.jpg") no-repeat center center fixed;
      background-size: cover;
    }

    /* Optional: blur only the background */
    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: inherit;
      filter: blur(2px);
      z-index: -1; /* put it behind content */
    }

    /* Navigation bar styles */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0 20px;
      box-sizing: border-box;
      z-index:9999;
    }

.nav a {
  color: white;
  font-family:sans-serif;
  background-color: rgba(255,255,255,0.05);
  padding: 8px 14px;         /* space inside the button */
  border-radius: 6px;        /* rounded corners */
  text-decoration: none;     
  margin-right: 20px;
  font-weight: bold;
  transition: all 0.3s ease; /* smooth hover effects */
  display: inline-block;     /* makes padding & background apply properly */
}

.nav a:hover {
  background-color: rgba(255,255,255,0.2); /* brighter background */
  text-shadow:0 0 15px white;                       /* neon cyan text */
}
.info {
  width: 50vw;
  max-width: 700px;
  min-width: 320px;
  margin: 100px auto 40px; /* centers horizontally, adds spacing from nav */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  gap: 15px;
  text-align: center;
  color: #ffffff;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}


.info h1 {
  margin: 0;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 5px;
}

.con1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.item {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1.2em;
  font-weight: 500;
  transition: transform 0.3s, background 0.3s;
}

.item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
}


.nav .navtitle {
    left:50%;
    position:absolute;
    transform:translateX(-50%);
    color:white;
    font-family:sans-serif;
    font-size:1.5em;
}