
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9f2cf;
}

header {
  background-color: #1f5f9f;
  color: #ffffff;
  padding: 1.2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 1.6rem;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
}

h2 {
  margin-top: 0;
  text-align: center;
}

#intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

#puzzleArea {
  background-color: #f4cf73;
  border: 2px solid #c9a64e;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#tanBoard {
  position: relative;
  width: 620px;
  height: 260px;
  background-color: #f4cf73;
  overflow: hidden;
}

#outline {
  position: absolute;
  left: 235px;
  top: 35px;
}

.tan {
  position: absolute;
  cursor: pointer;
}

/* starting locations for pieces */
#tan1 { left: 20px;  top: 20px; }
#tan2 { left: 130px; top: 20px; }
#tan3 { left: 240px; top: 20px; }
#tan4 { left: 350px; top: 20px; }
#tan5 { left: 460px; top: 20px; }
#tan6 { left: 80px;  top: 140px; }
#tan7 { left: 500px; top: 150px; }

#animals {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 0.5rem;
}

#animals figure {
  text-align: center;
  margin: 0;
}

#animals img {
  display: block;
  max-width: 260px;
  height: auto;
}

footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
}

footer p {
  margin: 0.3rem 0;
}

footer a {
  color: #1f5f9f;
}
