body {
  background: #f9f7fe;
  font-family: "Roboto" sans-serif;
}

.weather-app {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}

header {
  border-bottom: 1px aolid #f9f7fe;
  padding: 0 0 30px 0;
}

a {
  color: #885df1;
}

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 60%;
  font-size: 16px;
  padding: 15px 20px;
}

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

main {
  padding: 50px 0;
}

.weather-app-city {
  margin: 0;
  font-size: 28px;
  line-height: 38px;
}

.weather-app-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}

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

.weather-app-details strong {
  color: #f65282;
}

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  width: 88px;
  margin-top: -15px;
  margin-left: 90px;
  height: 88px;
}

.weather-app-temperature {
  font-size: 88px;
  font-weight: bold;
  line-height: 1;
  margin-right: -30px;
}

.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
  margin-left: -35px;
}

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