
body {
  background-color: #000000ff;/* Dark background */
  color: #f4f1ee;
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
}
small, footer, .audio-caption {
  font-family: 'DM Sans', sans-serif;
}
/* === Background Decoration(Whatever, subject to change) === */
.home .background-cube {
  background-image: url('https://bala-hub-13.github.io/assets/Cube_1.png'); /* Got it here - https://ghpages.noahdoersing.com/tixyz/?code=i+%2F+2 - cool site! */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 700px;
  opacity: 0.15;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 0;
  pointer-events: none;
}


.home .content {
  position: relative;
  z-index: 2;
}


header {
  background-color: #000000ff; 
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 0.05rem;
   text-shadow: 1px 1px 2px #000;
}

header p {
  font-size: 1rem;
  color: #f6f3f0;
  margin-top: 0.5rem;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #eae0d5;
  font-weight: 500;
  transition: color 0.3s ease;
}
a {
  color: #ff6b6b;
  text-decoration: none;
}

a:hover {
    color: #ff8787;
  text-shadow: 0 0 3px rgba(255, 107, 107, 0.5);
  text-decoration: none; 
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.nav-pill {
  display: inline-block;
  padding: 0.1rem 0.5rem; 
  margin: 0.2rem;   
  background-color: #1a1a1a;
  border-radius: 8px;
  font-style: italic;
  color: #ff6b6b;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-pill:hover {
  background-color: #2a2a2a;
  color: #ffa3a3;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
}

main {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section h2 {
  font-size: 1.5rem;
  background-color:#000000ff; 
  border-bottom: 1px solid #4a3f3f;
  color: #f4f1ee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.Details {
  border-bottom: 1px solid #333;
  font-size: 1.1rem;
  font-style:italic;
  color: #ffa3a3;
}
.Details a:hover{
  color: #aaa;
}

.audio-caption {
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: #aaa;
  padding: 8px;
}
footer {
  background-color: #000000ff;
  border-top: 1px solid #333;
  color: #a8a6a1;
}
footer a {
  color: #ff6b6b;
}

footer a:hover {
  text-decoration: underline;
}

.social-icons {
  position: fixed;
  bottom: 10px;
  right: 365px;
  display: flex;
  gap: 15px;
  transition: all 0.3s ease;
}

.social-icons a img {
  width: 20px; 
  height: 20px;
  filter: grayscale(100%); 
}
@media (max-width: 600px) {/* For smaller screens */
  body {
    font-size: 17px;
    padding: 1.5rem;
  }

  header h2 {
    font-size: 1.6rem;
  }
    .webring {
    left: 36%;
    transform: translateX(-36%);
  }

  .nav-pill {
    padding: 0.25rem 0.6rem;
    font-size: 0.95rem;
  }

  main {
    padding: 0 1rem;
  }

  .background-cube {
    background-size: 400px;
  }
  .social-icons {
    right: 10px; 
    bottom: 15px; 
  }
}  
.bulletin { /* A section for updates */
  margin-top: 1.5rem;
  background-color: #111;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.webring {
  position: fixed;
  bottom: 0;
  left: 36%;
  transform: translateX(-50%);
  text-align: center;
  margin-bottom: 10px; 
  z-index: 9999;
}

.webring img {
  max-width: 100%; 
  height: auto;
}