* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

main {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #3498db, #8e44ad);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 15px 0;
}

#search {
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  width: 300px;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

#search:focus {
  transform: scale(1.05);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
}

#weather {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 40px;
  border-radius: 20px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#weather img {
  width: 100px;
  height: 100px;
}
