h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
header h1 {
  text-align: center;
}

header {
  text-align: center;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  margin-top: 40px;
  color: #0047ab;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

.center-text {
  text-align: center;
}

nav {
  margin-top: 10px;
}

nav a {
  padding: 6px 10px;
  border-radius: 5px;
}

nav a:hover {
  background-color: rgba(255,255,255,0.15);
}

hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #ddd;
}

a {
  color: #0047ab;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


h3 {
  margin-top: 25px;
  color: #333;
}
ul li {
  margin-bottom: 6px;
}


.site-footer {
  background-color: #1e1e1e;
  color: #f1f1f1;
  padding: 25px 15px;
  margin-top: 60px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0 0 12px;
  opacity: 0.9;
}
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

body {
  line-height: 1.6;
}

.panda {
  transition: transform 0.6s ease;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.panda {
  animation: spin 8s linear infinite;
}

.panda:hover {
  transform: rotate(360deg);
}


.panda {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 120px;       /* adjust size */
  height: 120px;
border-radius: 50%; /*the creates the round shape */
object-fit: cover;  /* Prevents the image from stretching */
  z-index: 1000;      /* keeps it on top */
  opacity: 0.9;
}
.panda:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 600px) {
  .panda {
    display: none;
  }
}

.BS {
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}


.footer-nav {
  display: flex;
margin-top: 8px;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
  transform: translateY(-2px);
}
.site-footer {
  background: linear-gradient(135deg, #002f6c, #0047ab);
}
