* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  /* background: linear-gradient(to right, #2980b9, #6dd5fa); */
  background: #222;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.weather-container {
  /* background-color: white; */
  background: linear-gradient(135deg, #00feba, #5b548a);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 350px;
  text-align: center;
}

.title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.search {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.search input {
  padding: 10px;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
}

.search button {
  padding: 10px 15px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.weather-info {
  margin-top: 20px;
}

.weather-info img {
  width: 100px;
}

.weather-info h2 {
  font-size: 22px;
  margin: 10px 0;
}

.weather-info p {
  font-size: 18px;
  margin: 5px 0;
}

.hidden {
  display: none;
}
span {
  color: white;
  display: none;
}
.last-div {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}
img .details {
  width: 10px;
}
