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

body {
  background-color:rgba(245, 245, 245, 0.619);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: scroll;
}

.container {
  background:rgb(190, 237, 255);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 400px;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

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

.search-box input {
  width: 70%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 8px 0 0 8px;
  outline: none;
  font-size: 14px;
}

.search-box button {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition:0.3s ease;
}

.search-box button:hover {
  background: #357abd;
}

.weather-card {
  margin-top: 15px;
}

.weather-card img {
  width: 80px;
  height: 80px;
}

.weather-card h2 {
  font-size: 2rem;
  color: #222;
  margin-top: 10px;
}

.weather-card p {
  color: #555;
  margin: 20px 0;
  font-size: 1rem;
  text-align: left;

}

/* Responsive design */
@media (max-width: 400px) {
  .container {
    width: 90%;
    padding: 20px;
  }

  .search-box input {
    width: 65%;
  }
}
