body {
  background-image: url("images/overcast-sky.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.app-container {
  background-color: rgba(223, 232, 230, 0.7);
  margin: 64px auto;
  padding: 32px;
  max-width: 600px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  font-family: "Inter", sans-serif;
  font-size: 15px;
}
h1 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
.search-form {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.search-input {
  background-color: #ffffff;
  border: 1px solid #b9cbd6;
  color: #2c3e50;
  border-radius: 5px;
  flex: 1;
  font-size: 16px;
  padding: 12px 16px;
}

.search-button {
  background-color: #4a90e2;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  transition: all 200ms ease-in-out;
}
.search-button:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}
main {
  padding: 32px 0;
}
.current-weather-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.current-weather-section strong {
  color: #4a90e2;
  font-weight: 600;
}
.current-details {
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
}
.current-forecast {
  flex: 1;
}

.current-weather-icon {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.current-temperature h2 {
  line-height: 1;
  margin: 0;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
}
.current-temperature-value {
  font-size: 68px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.current-temperature-unit {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
}
footer {
  border-top: 1px solid #c6d8e0;
  padding: 24px 0 0;
  font-size: 14px;
  text-align: center;
  color: rgba(0, 0, 0, 0.45);
}
a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: #2f74c0;
  text-decoration: underline;
}
.seven-day-weather-forecast {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}
.weekly-forecast {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  margin: 0;
  line-height: 1;
  padding: 4px 8px;
  background-color: #eef5fb;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.weekly-forecast-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.weekly-forecast-icon img {
  width: 42px;
  height: 42px;
  display: block;
}
.weekly-forecast-condition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.high-temperature strong {
  font-weight: 600;
  color: #e67e22;
}
.low-temperature {
  color: #3498db;
}
.weekly-forecast-temperatures {
  text-align: right;
}
.weekday {
  font-weight: 500;
  text-align: left;
}
