body {
  background-color: #f9f7fe;
  font-family: "roboto", sans-serif;
}
a {
  color: #885df1;
}
.data-container {
  display: flex;
  justify-content: space-between;
}

.city-container {
  margin: 0;
  line-height: 48px;
  font-size: 38px;
}
.weather-container {
  background: white;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  box-shadow: 0 30px 50 rgba(65, 50, 100, 0.08);
  border-radius: 16px;
}

.details-container {
  font-size: 16px;
  line-height: 20px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 25px;
  font-weight: 400;
}

.details-container strong {
  color: #f65282;
}
.weather-icon-container {
  display: flex;
  align-items: center;
  gap: 1px;
}
.temp-value-container {
  font-size: 88px;
  margin-left: 0px;
  line-height: 88px;
  font-weight: bold;
  margin: 0;
}
.icon-container {
  font-size: 48px;
  margin: 0px;
  display: flex;
  align-items: center;
}
.unit-container {
  margin-top: 6px;
  font-size: 28px;
}
.Weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.Weather-forecast-date {
  text-align: center;
  color: rgb(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.Weather-forecast-temperature {
  text-align: center;
  color: #f65282;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.Weather-forecast-temperatures {
  padding: 0 10px;
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 16px 20px;
  font-size: 16px;
}

.search-form-button {
  background-color: #885df1;
  padding: 16px 30px;
  border: none;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 16px;
}

main {
  padding: 30px 0;
}

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

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
