body {
  font-family: "Poppins", sans-serif;
  background-image: url(../assets/images/weather6.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  margin: 0;
}

/* APP BODY */

.app {
  background: rgba(255, 255, 255, 0.6);
  max-width: 650px;
  margin: 100px auto;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(19, 19, 20, 0.5);
  border-radius: 10px;
}

/* HEADER WITH SEARCH FORM */

header {
  border-bottom: 2px solid white;
  padding-bottom: 30px;
}

.search-form-input {
  padding: 20px;
  border: none;
  width: 75%;
  border-radius: 6px;
  padding: 15px;
  font-size: 17px;
  background-color: rgba(255, 255, 255, 0.1);
  color: black;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 15px 40px rgba(120, 120, 125, 0.5);
}

.search-form-button {
  background-color: darkred;
  color: white;
  border: none;
  border-radius: 6px;
  width: 24%;
  padding: 15px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  box-shadow: 0 15px 30px rgba(120, 120, 125, 0.5);
}

main {
  padding: 20px 0;
}

/* TEMPERATURE AND ICON */

.temperature-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.temperature-display {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.temperature-value {
  font-size: 100px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.temperature-icon {
  display: block;
  width: 150px;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  object-fit: contain;
  margin-right: -25px;
  transform: scale(1.1);
}

.temperature-unit {
  font-size: 50px;
  padding-top: 15px;
  font-family: "Poppins", sans-serif;
}

/* CITY, TIME, AND DATA SECTION */

.date-weather {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

.date-weather .left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.date-weather .left-column .city {
  font-size: 40px;
}

.date-weather .right-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}

.humidity i {
  color: blue;
}

.wind-speed i {
  color: black;
}

.weather-description i {
  color: darkgoldenrod;
}

/* DAYS CURRENTLY HIDDEN */

.forecast {
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forecast-days {
  text-align: center;
}

.forecast-day {
  font-size: 16px;
  line-height: 20px;
}
.forecast-icon {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
}

.forecast-temp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 20px;
}

.forecast-temp-day {
  font-weight: bold;
}

.forecast-temp-night {
  color: rgb(120, 120, 120);
  font-weight: normal;
}

.temperature-conditions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* FOOTER */

footer {
  color: black;
  text-align: center;
  border-top: 2px solid white;
  padding-top: 20px;
}

.cherry-logo {
  display: inline-flex;
  align-items: center;
  margin: 0 1px;
}

.cherry {
  width: 25px;
  height: auto;
  display: block;
}

footer a {
  margin: 0 5px;
}
