body {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  background: #f9f7fe;
}

.weather-app {
  background: white;
  max-width: 600px;
  margin: 38px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}

.city-search {
  background-color: whitesmoke;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 17px;
  padding: 15px 20px;
}

.search-form-button {
  background: #f15db3;
  padding: 15px 20px;
  border: none;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 17px;
  width: 18%;
}

a {
  color: #f15db3;
}

main {
  padding: 30px 0;
}

.search-outcome {
  display: flex;
  justify-content: space-between;
}

header {
  border-bottom: 1px solid whitesmoke;
  padding: 0 0 30px 0;
}

.city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

strong {
  color: #f15db3;
}
.temperature-result {
  font-size: 16px;
  line-height: 20px;
  color: rgba(39, 33, 66, 0.4);
}

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

.emoji {
  width: 88px;
  height: 88px;
}

.temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

.unit-measurement {
  margin-top: 8px;
  font-size: 30px;
}

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

.weather-forecast-date {
  text-align: center;
  color: black;
  font-size: 20px;
  line-height: 22px;
}

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

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

.weather-forecast-temperature {
  padding: 0 6px;
  font-size: 18px;
}

footer {
  border-top: 1px solid whitesmoke;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
}
