body {
  background: #10e7f2;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

a {
  color: rgb(239, 29, 239);
}

.app-container {
  background: #f0b8f7;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 15px;
  padding: 30px;
  color: white;
}

header {
  border-bottom: 1px solid #68549f;
  padding: 0 0 30px 0;
}

.search-input {
  background: #f9f7fd;
  border: none;
  border-radius: 5px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
  color: rgb(5, 167, 143);
}

.search-submit {
  background: rgb(239, 29, 239);
  padding: 15px 30px;
  border: none;
  margin-left: 3px;
  border-radius: 5px;
  color: white;
  font-size: 16px;
}

.weather-data {
  display: flex;
  justify-content: space-between;
}

main {
  padding: 30px 0;
}

.current-city {
  margin: 0;
  font-size: 60px;
  line-height: 48px;
  color: rgb(11, 171, 43);
}

.weather-details {
  font-size: 16px;
  color: rgb(6, 118, 216);
  padding: 10px 0 0 0;
  line-height: 20px;
}

.weather-details strong {
  color: rgb(239, 29, 239);
}

.temperature-info {
  display: flex;
}
.weather-icon {
  width: 80px;
  height: 80px;
  margin-top: 10px;
}

.weather-temperature {
  font-size: 88px;
  font-weight: bold;
  margin-left: 10px;
  color: rgb(11, 171, 43);
}

.centigrade {
  margin-top: 20px;
  font-size: 30px;
  color: rgb(11, 171, 43);
}

.forecast-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #68549f;
}

.forecast {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 70px;
}

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

.forecast-icon {
  width: 60px;
  padding: 10px 0;
}

.forecast-temps {
  display: flex;
  gap: 5px;
}

.forecast-temp-max {
  padding: 0 10px 0 0;
}

.forecast-temp-min {
  opacity: 0.8;
}

footer {
  border-top: 1px solid #68549f;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 13px;
  color: rgb(11, 171, 43);
}
