* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

main {
  text-align: center;
}

h1 {
  padding: 1rem;
  font-size: 3rem;
  color: rgb(77, 77, 247);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

input {
  width: 50%;
}

input,
button {
  padding: 5px;
  margin: 5px;
  font-size: 1.2rem;
  border: none;
  border-radius: 2px;
  box-shadow: 1px 1px 1px 2px lightskyblue;
  color: rgb(77, 77, 247);
  background-color: aliceblue;
}

button:active {
  transform: translateY(1px);
}

.image-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.image-result {
  width: 400px;
  margin: 20px;
  border-radius: 5px;
  box-shadow: -4px 5px 2px 3px #efefef;
}

.image-result p {
  padding: 8px;
}

.image-result img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.image-result img :hover {
  transition: transform 0.3s ease-in-out;
}

.search-container {
  padding: 1rem;
}
