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

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(45deg, #00B7FF, #FFFFC7);
}

.search {
  display: flex;
  background: linear-gradient(45deg, #333, #5A5454);
  height: 80px;
  border-radius: 80px;
  padding: 5px;
}
.search input {
  border: none;
  background: none;
  outline: none;
  font-size: 20px;
  padding: 0 50px;
  color: white;
  width: 0;
  transition: 1s width;
}
.search:hover input {
  width: 250px;
}
.search button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  background-image: url(../add/pictures/search.png);
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
