html {
  font-size: 20px;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   background-color: lightblue;
}

img {
  width:300px;
  max-width:300px;
  border-radius: 5px;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}
.out {
  display: flex;
  flex-direction: column;
}

form {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

form input[type=search] {
  border: 2px solid black;
  border-radius: 20px;
  text-align: center;
  width: 200px;
  height: 30px;
  transition: 0.4s;
  background-color: transparent;

}


button {
  width: 100px;
  height: 30px;
  border-radius: 10px;
  border: 2px solid black;
  cursor: pointer;
  transition: 0.4s;
}

button:hover {
  background-color: transparent;
  padding: 2px;
}


h1{
  font-weight: bold;
}
