body {
  background: linear-gradient(to right, rgb(27, 153, 131), rgb(150, 1, 150));
  font-family: "Almendra SC", serif;
  font-weight: 400;
  font-style: normal;
}

.weather-app-search {
  background: #faaa6896;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 30px 50px rgba(255, 255, 255, 0.568);
}
.search-form-input {
  background-color: #574c8a3f;
  border: none;
  font-size: 16px;
  padding: 20px;
  width: 80%;
  border-radius: 6px;
}

.search-form-button {
  background: #028391;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 40px;
  color: rgb(255, 255, 255);
  margin-left: 5px;
  font-family: "Niconne", cursive;
}

main {
  padding: 30px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fb264973;
  max-width: 600px;
  margin: 20px auto;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0px 30px 50px rgba(255, 255, 255, 0.568);
}

.weather-app-city {
  margin: 0;
  font-size: 60px;
  line-height: 25px;
}

.weather-app-details {
  font-size: 26px;
  color: rgba(254, 254, 255, 0.473);
  line-height: 25px;
}

.weather-app-details strong {
  color: #8d1111de;
}

.weather-app-temp-container {
  display: flex;
}

.weather-app-temperature {
  font-size: 88px;
  font-weight: bold;
  line-height: 88px;
}
.weather-app-icon {
  width: 88px;
 height: 88px;
}
.weather-app-unit {
  font-size: 30px;
  margin-top: 6px;
}

.weather-forecast{
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  align-items: center;
  background: #fbc9266e;
  max-width: 600px;
  margin: 20px auto;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0px 30px 50px rgba(255, 255, 255, 0.568);
}


.weather-forecast-date { 
  text-align: center; 
  color: #040007 ; 
  font-size: 16px; 
  line-height: 20px;
  margin-bottom: 10px;
}
  
.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temps {
   color: #8d1111de;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.weather-forecast-temp {
  padding: 0 10px;}

footer {
  background: #ed86f15b;
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.425);
  font-size: 16px;
  margin-top: 50px;
}
a:link {
  color: #01327a;
  text-decoration: none;
}
a:visited {
  color: #942c0d;
}
