body {
  font-family: "Oswald", sans-serif;
  background: radial-gradient(rgb(213, 143, 200), rgb(249, 239, 220));
}
a {
  color: rgba(4, 50, 103);
}

.weather-app {
  background: rgb(248, 229, 221);
  margin: 45px auto;
  padding: 30px;
  max-width: 600px;
  border-radius: 7px;
  box-shadow: 0 40px 60px rgba(47, 6, 78, 0.8);
}
header {
  border-bottom: 1px solid rgba(4, 50, 103, 0.2);
  padding: 0 0 20px 0;
}
footer {
  position: relative;
  margin-top: 0 auto;
  border-top: 1px solid rgba(4, 50, 103, 0.2);
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(4, 50, 103, 0.6);
}
.search-form-input {
  font-family: "Oswald", sans-serif;
  background: rgba(96, 85, 194, 0.5);
  padding: 15px;
  margin: 5px auto;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(7, 6, 47, 0.8);
  font-size: 15px;
  border: none;
  width: 75%;
  outline: none;
}
.search-form-button {
  font-family: "Oswald", sans-serif;
  background: rgba(47, 6, 78, 0.9);
  padding: 15px;
  margin: 5px auto;
  margin-left: 7px;
  border-radius: 6px;
  font-size: 15px;
  color: rgb(247, 224, 214);
  border: none;
  box-shadow: 0 5px 10px rgba(7, 6, 47, 0.8);
  width: 20%;
}

main {
  padding: 30px 0;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  position: relative;
  top: -5px;
  margin: 0;
  font-size: 60px;
  line-height: 48px;
  color: rgba(47, 6, 78, 0.9);
}
.time {
  color: rgba(115, 14, 107, 0.9);
}
.weather-app-details {
  font-size: 16px;
  line-height: 20px;
  color: rgba(4, 50, 103, 0.8);
}

.weather-app-details strong {
  font-size: 14px;
  color: rgba(115, 14, 107, 0.9);
}
.weather-app-temp-container {
  margin: 0;
  margin-top: 12px;
  font-size: 45px;
  line-height: 45px;
  display: flex;
  color: rgba(47, 6, 78, 0.9);
}

.weather-app-icon {
  position: relative;
  top: -5px;
  font-size: 45px;
  margin-right: 1px;
}
.weather-app-temp-value {
  font-size: 75px;
  font-weight: bold;
  margin-top: 15px;
}
.weather-app-temp-unit {
  font-size: 20px;
  position: relative;
  top: -20px;
}
.weather-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  text-align: center;
}
.weather-forecast-date {
  font-size: 14px;
  color: rgba(47, 6, 78, 0.6);
}
.weather-forecast-temperatures {
  font-size: 13px;
  color: rgba(47, 6, 78);
}
.weather-forecast-temperature-min {
  color: rgba(47, 6, 78, 0.6);
}
.weather-forecast-icon {
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto;
}
