body {
  background: #f6f6f6;
  font-family: sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 16px #0001;
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #222;
}

#weather {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

#forecast {
  display: flex;
  gap: .5rem;
  justify-content: center;
}

.forecast-day {
  background: #f6f6f6;
  padding: .5rem 1rem;
  border-radius: .5rem;
  min-width: 70px;
}

.temp {
  font-weight: bold;
  font-size: 1.1rem;
}
