body {
  font-family: Arial, sans-serif;
}
#potato-img {
  width: 200px;
}
form {
  display: flex;
}

#search-input {
  flex-grow: 1;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  border-radius: 3px;
  box-shadow: 0 0 3px gray;
}

#search-button {
  padding: 0.5em;
  font-size: 1em;
  border: none;
  border-radius: 3px;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

#search-button:hover {
  background-color: #3e8e41;
}

#results {
  margin-top: 1em;
}
