body {
  background-color: rgba(128, 128, 128, 0.059);
  font-family: "Epunda Slab", serif;
}

header {
  border-bottom: rgba(128, 128, 128, 0.059);
  padding: 20px 0;
}

.weather-app {
  background-color: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 30px;
}

.search-form-input {
  background-color: rgba(128, 128, 128, 0.059);
  font-family: "Epunda Slab", serif;
  border: none;
  border-radius: 6px;

  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 15px 20px;
  font-size: 16px;
  cursor: pointer;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.weather-app-city {
  font-size: 36px;
  margin: 0;
}

.weather-app-details {
  color: gray;
  font-size: 16px;
  margin: 5px 0 0 0;
  padding: 20px;
}

.weather-app-details strong {
  color: black;
}

.weather-app-temperature-container {
  display: flex;
}
.weather-app-icon {
  font-size: xxx-large;
}
.weather-app-temperature {
  font-size: 110px;
  line-height: 1;
  font-weight: bold;
}
.weather-app-unit {
  font-size: 40px;
  margin-left: 5px;
  position: relative;
  top: 10px;
}
.weather-app-note {
  display: block;
  font-size: 12px;
  color: gray;
  margin-top: 5px;
}

.weather-app-temperature-wrapper {
  display: flex;
  align-items: flex-start;
  margin-left: 20px;
}

.weather-forecast {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.weather-forecast-date {
  margin-bottom: 5px;
}

.weather-forecast-day {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}

.weather-forecast-icon img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  color: rgb(188, 13, 13);
  padding-bottom: 20px;
}

.weather-forecast-temperature {
  font-size: 14px;
}
footer {
  border-top: rgb(211, 207, 207);
  border-top-style: solid;
  border-width: 0.01cm;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: gray;
}
