body {
  background-color: #f9f7fe;
}

.weather-app {
  background-color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  margin-top: 100px;
}
header {
  border-bottom: #f9f7fe solid 1px;
  padding: 20px 0 30px 0;
}
main {
  padding: 20px 0;
}

.searchform-input {
  width: 80%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  border: none;
  background-color: #f9f7fe;
  border-color: 1px solid #007bff;
}
.searchform-button {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}
footer {
  padding-top: 30px;
  text-align: center;
  border-top: #f9f7fe solid 1px;
  font-size: 14px;
  color: #666;
}
.city-name {
  font-size: 48px;
  font-weight: bold;
  line-height: 48px;
  margin: 0;
}
.weather-description {
  font-size: 18px;
  line-height: 24px;
  color: rgba(39, 33, 66, 0.7);
}
.weather-description strong {
  color: #f65282;
}
.city-weather-description {
  display: flex;
  justify-content: space-between;
}
.temperature-value {
  font-size: 100px;
  font-weight: 500;
  line-height: 88px;
  margin: 0;
}
.temp-icon {
  margin: 0;
  position: relative;
  bottom: 35px;
  font-size: 24px;
}
main {
  padding: 20px;
}
#weather-emoji {
  width: 65px;
  height: 65px;
  margin: 0px;

  position: relative;
  top: 30px;
}
.weather-forecast-for-a-week {
  display: flex;
  justify-content: space-between;
  border-top: #f9f7fe solid 1px;
  padding-top: 30px;
}
.day {
  color: #842946;
  text-align: center;

  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.day-emoji {
  width: 88px;
  height: 88px;

  position: relative;
  left: -30px;
  padding-top: 20px;

  bottom: 10px;
}
.day-temperature {
  font-size: 16px;
  color: #f65282;
}
.min-value {
  position: relative;
  left: 10px;
  color: #f65282;
}
.max-value {
  position: relative;
  left: -10px;
}
