body {
  background-color: #f9f7fe;
  font-family: "Roboto Mono", monospace;
}

header {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.container {
  max-width: 600px;
  margin: 45px auto;
  background-color: white;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
.search-input {
  width: 80%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16p;
  background-color: #f9f7fe;
}
.search-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #f9f7fe;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
h1 {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
p {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}
p strong {
  color: #f65282;
  font-weight: 700;
}

.temperature-container {
  display: flex;
}

.temperature-icon {
  font-size: 50px;
  line-height: 88px;
}

.temperature-value {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
  margin-left: 10px;
}

.temperature-unit {
  margin-top: 6px;
  font-size: 28px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.forecast-date {
  text-align: center;
  font-size: 16px;
  color: #888;
  line-height: 24px;
  margin-bottom: 10px;
}

.forecast-icon {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto;
}

.forecast-temperature {
  text-align: center;
  color: #f65282;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.forecast-temperature1 {
  padding: 0 10px;
}

.city-info {
  display: flex;
  justify-content: space-between;
}

footer {
  margin-top: 30px;
  color: #888;
  font-size: 14px;
  padding: 30px 0 0;
}
