body {
  font-family: 'Helvetica Neue', Arial, sans-serif; /* Modern font */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  background-color: black;
  color: white;
  padding: 10px;
}

.header h1, .header h2 {
  margin: 0; /* Added this line */
}

.weather-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 10px;
  background-color: #f0f0f0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.weather-item {
  text-align: left;
  width: 100%;
  font-size: 20px;
  font-weight: bold; /* Bold font */
}

.temp_max {
  color: red;
}

.temp_min {
  color: blue;
}

.weather-item img {
  height: 50px; /* Icon height */
  width: 50px;  /* Icon width */
  vertical-align: middle; /* Align the icon and text in the middle */
}

.rain {
  display: inline-block;
  width: 4.5ch; /* Adjust the width to align with the new font */
  text-align: right;
}

.weather-item img.sun-icon {
  height: 25px; /* Sun icon height */
  width: 25px;  /* Sun icon width */
  vertical-align: middle; /* Align the sun icon and text in the middle */
}