body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #c5def7, #746bee);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

.search-box {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

button {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: #746bee;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #0767b2;
}

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

.temp {
  font-size: 40px;
  font-weight: bold;
  margin: 10px 0;
}

.description {
  color: #555;
  font-size: 18px;
}

.city {
  font-size: 22px;
  font-weight: bold;
}
