* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #b3c7c9, #66a6ff);
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 350px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-box input {
  flex: 1;
  padding: 10px;
  border: 2px solid #66a6ff;
  border-radius: 8px;
  outline: none;
}

.search-box button {
  padding: 10px 15px;
  background: #66a6ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background: #5590e8;
    transform: scale(1.1);
}

.weather-card {
  padding: 15px;
}

.weather-card img {
  width: 80px;
}

.weather-card h2 {
  margin: 10px 0;
  color: #333;
}

.weather-card p {
  font-size: 18px;
  color: #555;
}