@charset "UTF-8";
/* CSS Document */
body {
  font-family: Arial, sans-serif;
  color: #ccc;
  background:black;
  margin: 30px; 
  padding-top:30px; 

}



nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* transparent */
  color: white;
  padding: 0.5rem 1.2rem; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-family:"Times New Roman", "serif"; 
  font-size: 1.1rem;
}

.logo {
  flex: 1;
  font-weight:none;
  font-size: 1.4rem;
  font-family: "Times New Roman", "serif";
}

nav ul {
  flex: 2;
  display: flex;
  justify-content: center;  /* ✅ center the links */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
transform: translateX(-27%); /* <<< shift a little to the left */
}

nav a {
  color:white;
  text-decoration: none;
  font-weight: none;
}

nav a.active {
  border-bottom: 1px solid white; 
  padding-bottom: 5px;            
}


h1 {
  padding-top: 100px; 
  text-align: center;
  padding-bottom: 20px;
}


p {
  text-align: center		
}


.social-icons {
  text-align: center;        /* center the icons under text */
  margin-top: 30px;          /* space above */
}

.social-icons a {
  margin: 0 10px;            /* spacing between icons */
  display: inline-block;
}

.social-icons img {
  width: 30px;               /* adjust size */
  height: 30px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 1;
}

.social-icons img:hover {
  transform: scale(1.2);     /* zoom effect on hover */
  opacity: 1;                /* full opacity on hover */
}