body {
  background-color: #d3a8c6;
  font-family: "Roboto", sans-serif;
}
.weather-app {
  background-color: rgb(226, 206, 222);
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
}
a {
  color: #6f3c5d;
  text-decoration: none;
}
header {
  margin-bottom: 20px;
}
.search-form-input {
  background-color: #bba0b2;
  border-radius: 5px;
  border: none;
  width: 80%;
  padding: 15px;
  font-size: 16px;
  color: white;
}
.search-form-button {
  background-color: #bba0b2;
  border-radius: 5px;
  border: none;
  width: 15%;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
  color: white;
}
.search-form-button:hover {
  background-color: white;
  color: #e0b8d2;
  cursor: pointer;
}
main {
  padding: 30px;
}
.weather-app-temperature-container {
  display: flex;
}
.weather-app-icon {
  margin-right: 15px;
  margin-top: 15px;

  width: 60px;
  height: 60px;
}
.weather-app-details strong {
  color: #c784af;
}
.weather-app-city {
  font-size: 28px;
  font-weight: bold;
}
.weather-app-details {
  font-size: 16px;
  color: #555;
}
.weather-app-temperature {
  font-size: 70px;
  font-weight: bold;
}
.weather-app-unit {
  margin-top: 12px;
  font-size: 28px;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.weather-forecast-date {
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}
.weather-forecast-temperatures {
  font-size: 16px;
  color: #c784af;
  display: inline-flex;
  justify-content: center;
  margin-top: 5px;
  text-align: center;
}
.weather-forecast-temperature {
  color: #c784af;
  margin: 0 7px;
}
strong {
  color: #c784af;
}

footer {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: gray;
}
