body {
  font-family: Arial, sans-serif;
  background-color: azure;
}

.container {
  background-color: #ffe9f3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-width: 6px;
  border-style: solid;
  border-color: #fe7799;
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cityInput {
  background-color: white;
  border: 2px solid #a2daff;
  color: black;
  font-size: 16px;
  padding: 10px;
  width: 65%;
  border-radius: 20px;
}

.submitCity {
  background-color: #a2daff;
  color: black;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

h1 {
  text-align: center;
  color: #ff69b4;
  font-size: 60px;
  margin-bottom: 20px;
  font-style: italic;
}
.nowWeatherDetails {
  color: #555;
  font-size: 20px;
}
.humidityNow {
  color: #df37d6;
  font-weight: bold;
}

.windNow {
  color: #df37d6;
  font-weight: bold;
}

.weatherNow {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 20px;
}
.tempNow {
  font-size: 50px;
  font-weight: bold;
  color: #ad1d6f;
  position: relative;
  top: -10px;
  right: 50px;
}
.nowTempIcon {
  position: relative;
  top: 5px;
}

.nowTempValue {
  position: relative;
  top: -30px;
}

.nowUnit {
  position: relative;
  top: -30px;
}
a {
  color: #9f72cc;
  text-decoration: none;
}

.forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  flex-wrap: wrap;
}

.forecastDay {
  background-color: white;
  border: 2px solid mintcream;
  border-radius: 20px;
  padding: 10px;
  width: 150px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.forecastDayName {
  text-align: center;
  font-size: 20px;
  color: #ff69b4;
  font-weight: bold;
}
.forecastDayIcon {
  text-align: center;
}

.forecastDayTemp {
  text-align: center;
  font-size: 20px;
  color: #ad1d6f;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.temp {
  padding: 0 10px;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #555;
}
