@font-face {
  font-family: 'Ethnocentric';
  src: url('Fonts/ethnocentricrg.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: black;
  /*overflow: hidden;*/
  font-family: 'Ethnocentric', sans-serif;
  color: white;
  text-align: center;
}

h1 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 4em;
  font-family: 'Ethnocentric', sans-serif;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff, #9999ff, #444444, #9999ff, #ffffff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

img {
  margin-top: 0;
  width: 20%;
  height: auto;
}

.star-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.star-layer2 {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 200%;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite ease-in-out alternate;
}

@keyframes twinkle {
  from { opacity: 0.3; transform: scale(1); }
  to { opacity: 1; transform: scale(1.5); }
}

.shooting-star {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, white, transparent);
  opacity: 0.8;
  transform: rotate(45deg);
  animation: shoot 1s linear forwards;
}

@keyframes shoot {
  from {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 1;
  }
  to {
    transform: translateX(800px) translateY(-800px) rotate(45deg);
    opacity: 0;
  }
}

.white-bar {
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, #fefefe, #dcdcdc);
  margin: 30px 0 20px 0;
  box-shadow:
    inset 0 1px 0 #ffffff,        /* top inner highlight */
    inset 0 -1px 0 #bbbbbb,       /* bottom inner shadow */
    0 2px 0 #999999,              /* bottom edge */
    0 -2px 0 #eeeeee,             /* top edge */
    0 4px 6px rgba(0, 0, 0, 0.4); /* drop shadow */
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #888888;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: 'Ethnocentric', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  padding: 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #aaa;
}

.site-footer {
  text-align: center;
  font-size: 0.75em;
  color: #cccccc;
  margin-top: 40px;
  padding: 10px 0;
  opacity: 0.7;
}


@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}


.about-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  color: white;
  font-family: 'Ethnocentric', sans-serif;
  font-size: 1.1em;
  text-align: center;
  line-height: 1.6;
}

.about-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin: 10px 20px 0 20px;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
}

.about-header h2 {
  font-family: 'Ethnocentric', sans-serif;
  font-size: 2.5em;
  color: white;
  background: linear-gradient(90deg, #ffffff, #9999ff, #444444, #9999ff, #ffffff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  margin: 0;
  text-align: left;
}

.about-saturn {
  width: 20%;
  max-width: 200px;
  height: auto;
}


.links-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  color: white;
  font-family: 'Ethnocentric', sans-serif;
  font-size: 1.1em;
}

.links-content h3 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.link-entry {
  margin-bottom: 25px;
}

.link-entry a {
  color: #99ccff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
}

.link-entry a:hover {
  text-decoration: underline;
}

.link-entry p {
  margin: 5px 0 0 0;
  font-size: 1em;
}

.event-images img {
    display: block; /* Make images block-level elements */
    margin: 0 auto; /* Center the images if desired */
}