body {
  background-image: url("images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  margin: 0;
  font-family: "Noto Sans Mono", monospace;
}

a {
  color: #885df1;
}

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

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

.location {
  margin: 0;
  font-size: 30px;
  line-height: 48px;
}

.info {
  font-size: 16px;
  color: #22213d;
  line-height: 24px;
  font-weight: 500;
}

.info strong {
  color: #f65282;
}

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

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

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

.weather-temperature {
  font-size: 88px;
  font-weight: bold;
  line-height: 88px;
  margin-left: 10px;
}

.emoji {
  width: 90px;
  height: 90px;
}

.weather-units {
  margin-top: 6px;
  font-size: 28px;
}

.submit-form-button {
  background: #885df1;
  padding: 15px 30px;
  border: none;
  margin-left: 5px;
  font-size: 16px;
  border-radius: 6px;
  color: white;
}
.weather-app-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-app-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.7);
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 20px;
}

.weather-app-forecast-icon {
  text-align: center;
  font-size: 38px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  margin-bottom: 10px;
}

.weather-app-forecast-temperature {
  padding: 0 10px;
}
footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
