body {
  background-color: purple;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

a {
  color: purple;
}

footer {
  font-size: 14px;
  line-height: 1.5;
  padding: 5px;
  width: 100%;
  color: rgba(0, 0, 0, 0.6);
}

.weather-app-content {
  background-color: white;
  margin: 40px auto;
  padding: 15px;
  width: 450px;
  border-radius: 10px;
}
.search-city {
  width: 100%;
}
.search-input {
  background-color: #e8f0fe;
  border: 1px dotted purple;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;
  color: purple;
  width: 70%;
}
.search-button {
  padding: 5px;
  border-radius: 5px;
  border: 1px dotted purple;
  font-size: 16px;
  color: purple;
  width: 20%;
}

.weather-city {
  padding: 5px;
  font-size: 45px;
}

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

.weather-date-conditions {
  font-size: 16px;
  padding: 5px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}

.values {
  color: rgb(236, 149, 200);
}

.temperature-today {
  font-size: 30px;
  padding: 10px;
  display: flex;
}

.temperature-emoji {
  width: 55px;
}
.temperature-value {
  font-size: 50px;
  font-weight: bold;
}
.temperature-unit {
  font-size: 30px;
  font-weight: 400;
}

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

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

.forecast-weekday {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

.forecast-emoji {
  text-align: center;
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.forecast-temperatures {
  color: rgb(236, 149, 200);
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
