body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: deepskyblue
}

.notice {
  color: darkorange;
  background-color: black;
  font-family: Impact, Tahoma;
  font-size: 36px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('https://feeling-free.neocities.org/images/eagle.jpeg'), linear-gradient(#bfdfff, #87cefa, #506e2c, #0d5c63);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  
}


.site-header {
  width: 100%;
  max-width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ccc;
  margin: 0 auto;
}

.site-header h1 {
  margin: 0;
  font-size: 1.8rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.site-content, h2 {
  color: black;
  font-weight: 600;
  text-align: center;
}

.site-content {
  flex: 1;
  padding: 1 rem 2rem;
}

  .sparkle-left, .sparkle-right {
    animation: sparkle 1.5s infinite alternate;
    font-size: 1.5em;
    margin: 0 10px;
  }

  @keyframes sparkle {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.3); }
  }


