body {
  background-color: #f9f7fe;
  font-family: Arial, Helvetica, sans-serif;
}
div.container {
  background-image: url("https://i.pinimg.com/736x/79/1f/7f/791f7fe88c6a029b35b3c790fb1bd8b1.jpg");
  background-size: cover;
  background-position: relative;
  background-repeat: no-repeat;
  background-position-y: -225px;

  border-radius: 20px;
  box-shadow: 0 40px 70px rgba(65, 50, 100, 0.09);
  margin: 10px auto;
  max-width: 700px;
  padding-top: 3px;
}

.weathrly-app {
  display: flex;
  margin-top: 10px;
  margin-left: 10px;
}
.logo {
  width: 100px;
}

.weathrly {
  color: #630369;
  font-size: 28px;
  margin-left: 10px;
  position: relative;
  top: 11px;
}

.city-search-form {
  display: flex;
  justify-content: baseline;
}
.enter-city {
  background-color: #f2e0e3;
  border: none;
  border-radius: 6px;
  color: #056562;
  font-family: "Merienda", cursive;
  font-size: 16px;
  font-weight: 700;
  margin-left: 85px;
  margin-top: 20px;
  padding: 10px;
  width: 55%;
}
input::placeholder {
  color: #056562;
  font-weight: 700;
}

.search-button {
  background-color: #0fa19c;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-family: "Merienda", cursive;
  font-size: 18px;
  margin-left: 10px;
  margin-right: 30px;
  padding: 9px 25px;
}
main {
  padding: 5px 20px;
}

h1 {
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 48px;
}
h2 {
  font-family: "Merienda", cursive;
  color: #630369;
  font-size: 28px;
  font-weight: 800;
}
.today {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 30px;
}
#city-output {
  color: #b51122;
}

.current-weather {
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 60px 5px 60px;
}
.temperature {
  display: flex;
}
#temperature {
  color: #056562;
  position: relative;
  font-size: 90px;
  top: -10px;
}
#unit {
  color: #056562;
  font-size: 30px;
  align-items: flex-end;
  position: relative;
  top: 20px;
}
#icon {
  transform: scale(1.5);
  position: relative;
  top: -110px;
  left: 8px;
}
#description {
  color: #b41719;
  font-size: 18px;
  font-weight: 800;
}

.description p {
  color: #056562;
  font-family: "Merienda", cursive;
  font-size: 18px;
}

.description p strong {
  color: #630369;
}

.weather-forecast {
  display: flex;
  font-family: "Merienda", cursive;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-forecast-date {
  text-align: center;
  color: #b51122;
  font-size: 20px;
  font-weight: 800;
}

.weather-forecast-icon {
  width: 80px;
  display: block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  color: #257296;
  display: flex;
  font-size: 20px;
  justify-content: center;
  margin-top: 10px;
  text-align: center;
}

.weather-forecast-temperatures strong {
  color: #0a5e84;
}
.weather-forecast-temperature {
  padding: 0 6px;
}

.footer {
  color: #630369;
  font-size: 14px;
  margin-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}

.footer a {
  color: #a20f51;
}
