* {
  margin: 0;
  padding: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}
body {
  background: #222;
}
.card {
  width: 90%;
  max-width: 470px;
  color: white;
  margin: 50px auto;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(60deg, #fbac08, #c850c0, #4158d0);
}

.search {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search input {
  height: 60px;
  border: 0;
  outline: 0;
  background: #ebfffc;
  color: #555;
  padding: 10px 25px;
  border-radius: 30px;
  flex: 1;
  margin-right: 15px;
  font-size: 18px;
}

.search button {
  border: 0;
  outline: 0;
  background: #ebfffc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.search button img {
  width: 42px;
}

.weather h1 {
  font-size: 52px;
  font-weight: 600;
}
.weather h2 {
  font-size: 32px;
  font-weight: 500;
}

.weather-icon {
  width: 70px;
  margin-top: 30px;
}

.details {
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-top: 50px;
  justify-content: space-between;
}

.col1 {
  display: flex;
  align-items: center;
  text-align: left;
}

.col2 {
  display: flex;
  align-items: center;
  text-align: left;
}

.details img {
  width: 40px;
  margin-right: 10px;
}
.humidity,
.wind-speed {
  font-size: 28px;
  margin-top: -5px;
}
