/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #212529;
}

.image-container {
  margin: 2rem auto;
  max-width: 600px;
  width: 100%;
}

.rubber-duck {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.rubber-duck:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}