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

body {
  background-color: #339933;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
  min-height: 50vh;
  font-family: "poppins", sans-serif;
}

.search {
  height: 50px;
  position: relative;
}

.search .input {
 margin-left: 20px;
  background-color: #fff;
  font-size: 18px;
  width: 50px;
  height: 50px;
  padding: 15px;
  border-radius: 10px;
  border: 0;
  outline: 0;
  transition: width 0.3s ease;
}

.btn {
  margin-left: 20px;
  background-color: #fff;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  border: 0;
  border-radius: 10px;
}

.input:focus,
.btn:focus {
  outline: 0;
}

.search.active .input {
  width: 300px;
}

.search.active .btn {
  transform: translateX(250px);
}

.recents {
  background-color: aliceblue;
  padding: 1em;
  margin-top: 30px;
  font-size: 18px;
  border-radius: 15px;
}

h5{
  text-align: center;
  opacity: .7;
}

li {
  opacity: 0.7;
  list-style-type: none;
  margin-top: 10px;
}

footer{
  margin-top: 10px;
  text-align: center;
  font-size: 1em;
  color: white;
}

a{
  text-decoration: none;
  color: yellow;
}
