
body {
  font-family: sans-serif;
  text-align: center;
  padding: 2rem;
  background: #f6f9fc;
}
input {
  padding: 0.5rem;
  font-size: 1rem;
  width: 200px;
}
button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
#results {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.mascot-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 250px;
}
.mascot-card img {
  width: 100%;
  border-radius: 8px;
}
