/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: url("../images/swamp.svg") center/cover no-repeat, #7a8f7a;
  color: #fff;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
}
h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.frogs {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
.frog {
  width: 6rem;
  transition: transform 0.3s ease;
}
.frog:hover {
  transform: scale(1.2) rotate(-10deg);
}
p {
  font-size: 1.25rem;
  max-width: 600px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .frogs { gap: 1rem; }
  .frog { width: 4rem; }
  p { font-size: 1rem; }
}
