body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
header {
  padding-bottom: 30px;
}
.weather-app {
  max-width: 600px;
  margin: 45px auto;
  padding: 30px;
  padding-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
main {
  padding: 30px 0;
  border-top: darkgray solid 1px;
}
.city-input {
  width: 75%;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  background-color: #f9f7fe;
}

.city-input-value {
  width: 15%;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background-color: blueviolet;
  border: none;
}
.weather-data {
  display: flex;
  justify-content: space-between;
  border-top: lightgray solid 0.01px;
  padding-top: 20px;
}
.weather-data strong {
  color: #f65282;
}
p {
  color: #a8a6b4;
}
.temperature-details {
  display: flex;
}
.temperature-value {
  font-size: 88px;
  font-weight: bold;
  margin-left: 10px;
}
.temperature-icon {
  width: 77px;
  height: 77px;
  margin-top: 20px;
  margin-left: 77px;
}
.temperature-unit {
  font-size: 28px;
  margin-top: 16px;
}
.weather-forecast {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin: 30px 0 10px 0;
}
.forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.forecast-temperature {
  padding: 0 7px;
}
footer {
  border-top: lightgray solid 0.01px;
  margin-top: 20px;
  padding: 20px 0 20px 0;
  font-size: small;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}
a {
  color: blueviolet;
}
