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

body {
  background: linear-gradient(135deg, #74b9ff, #a29bfe);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

h1 {
  margin-bottom: 1rem;
}

.search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.search-box input {
  padding: 0.5rem;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.search-box button {
  padding: 0.5rem 1rem;
  background: #0984e3;
  border: none;
  color: white;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.search-box button:hover {
  background: #74b9ff;
}

.weather-info {
  margin-top: 1rem;
}

.weather-card {
  background: #f1f2f6;
  padding: 1rem;
  border-radius: 10px;
}

.weather-card h2 {
  margin-bottom: 0.5rem;
}

.placeholder {
  color: #666;
}
