body {
  background-color: rgb(240, 237, 243);
  font-family: "Ubuntu", sans-serif;
}
.app {
  background-color: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}
.search-form-input {
  background-color: rgb(240, 237, 243);
  border: none;
  width: 80%;
  border-radius: 6px;
  font-size: 16px;
  padding: 15px 10px;
}
.search-form-button {
  background-color: blueviolet;
  width: 15%;
  border-radius: 6px;
  font-size: 16px;
  border: none;
  padding: 15px 15px;
  margin-left: 5px;
  color: white;
}
p {
  line-height: 20px;
  color: rgb(0, 0, 0, 0.6);
}
.weather-data {
  display: flex;
  justify-content: space-between;
}
strong {
  color: rgb(248, 71, 100);
}
.temperature-container {
  display: flex;
  margin-top: 35px;
}
.temperature-icon {
  font-size: 50px;
  margin-top: 16px;
  margin-right: 10px;
}
.temperature-value {
  font-size: 80px;
}
.temperature-unit {
  font-size: 24px;
  margin-top: 15px;
}
.weather-app-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 12px;
}
.weather-app-icon {
  text-align: center;
  font-size: 40px;
}
.weather-app-temperatures {
  text-align: center;
  color: rgb(248, 71, 100);
  display: flex;
  margin-top: 10px;
}
.weather-app-temperature {
  padding: 10px;
}
.weather-app-forecast {
  display: flex;
  justify-content: space-around;
}
.weather-app-day {
  padding: 10px;
}
footer {
  font-size: 13px;
  text-align: center;
  background-color: azure;
  border-top: 1px;
  padding: 10px 0;
  margin-bottom: 0;
  color: rgb(0, 0, 0, 0.6);
}
