body {
  background-color: #f9f7fe;
  font-family: "roboto", sans-serif;
}
a {
  color: #f65282;
}
.container {
  background-color: white;
  max-width: 600px;
  margin: 45px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 30px;
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-form-input {
  background-color: #f9f7fe;
  width: 80%;
  border: none;
  border-radius: 6px;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  height: 50px;
  padding: 0 20px;
}
button {
  background-color: #f65282;
  width: 20%;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  height: 50px;
  padding: 0 20px;
  cursor: pointer;
}
h1 {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-data {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.weather-data-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 20px;
}
.humidity,
.wind {
  color: #f65282;
  font-weight: 550;
}
.temperature-container {
  display: flex;
}
.icon {
  width: 80px;
  margin-top: -10px;
}
.temperature {
  font-size: 70px;
  margin-left: 10px;
  font-weight: bold;
}
.unit {
  font-size: 28px;
  margin-top: 10px;
}

.forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.forecast-day {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.forecast-icon {
  text-align: center;
  width: 70px;
}
.forecast-temperature {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.max,
.min {
  padding: 0 5px;
}
.max {
  font-weight: bold;
}
footer {
  text-align: center;
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
