body {
  font-family: Arial, sans-serif;
  background-color: #fcaffa;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

header {
  background-color: #fcaffa;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #ff00ff;
}

.gooseContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

button {
  padding: 10px;
  background-color: white;
  color: rgb(208, 90, 198);
  border-radius: 20px;
  border: none;
}

button:hover {
  background-color: #751d75;
  color: white;
  cursor: pointer;
}

#gooseImage {
  border-radius: 20px;
  transition: transform 1s ease; /* Adjust time as needed */
}
