body {
  background: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  display: flexbox;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-attachment: fixed;
  font-family: "Playwrite IT Moderna", cursive;
}
.page {
  display: flexbox;
  width: max-content;
  text-align: center;
  margin: 35px auto;
  border: 2px groove transparent;
  border-radius: 10%;
  box-shadow: 5px 7px 5px 7px rgba(128, 128, 128, 0.493);
  padding: 10px 25px;
}
form {
  text-align: center;
}
.search-bar {
  border: 3px groove #ff1361;
  border-radius: 19%;
  padding: 10px 10px;
  padding-right: 200px;
}
.search-button {
  background-color: #ff1361;
  border: 3px groove #ff1361;
  border-radius: 25%;
  color: white;
  padding: 7px 10px;
}
.weather-info {
  text-align: left;
  color: white;
}
h1 {
  margin-top: 90px;
  font-weight: 400;
  font-size: 50px;
  color: white;
}

.weather-stats {
  color: #ff1361;
}
.today-emoji {
  text-align: right;
  font-size: 75px;
  margin-top: -60px;
}
img {
  width: 115px;
  height: 115px;
}
.degree {
  text-align: right;
  font-size: 85px;
}
.description {
  color: white;
  text-align: left;
  font-size: larger;
  margin-top: -80px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.weather-forecast-date {
  text-align: center;
  color: white;
  font-size: 16px;
}
.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  display: flex;
  justify-content: center;
  text-align: center;
  color: white;
  font-size: 16px;
  margin-top: 10px;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  color: white;
  text-align: center;
  margin-bottom: 10px;
  padding: 20px 15px;
}
