body {
  background: #ebe7e7;
  font-family: "Quicksand", sans-serif;
}

.app-container {
  background: #e4d5d5;
  border: 5px solid #ebe7e7;
  border-radius: 15px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
  margin: 50px auto;
  max-width: 600px;
  padding: 20px;
}

form {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.search-form-input {
  background-color: #fff;
  border: 5px solid #ebe7e7;
  border-radius: 30px;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  padding: 10px 30px;
  width: 80%;
}

.search-form-input:hover {
  background-color: #ebe7e7;
}

.search-form-button:hover {
  cursor: pointer;
}

.search-form-button {
  background: #ebe7e7;
  border: 5px solid #ebe7e7;
  border-radius: 30px;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: bolder;
  margin-left: 10px;
  padding: 10px 30px;
}

main {
  display: flex;
  justify-content: space-between;
  line-height: 1.5;
  margin: 10px;
}

h1 {
  font-size: 52px;
  margin: 0;
}

.weather-temp-container {
  display: flex;
  justify-content: end;
}

.weather-temp-icon {
  font-size: 60px;
  margin: auto 10px;
  position: relative;
  top: 5px;
}

.weather-temp-value {
  font-size: 88px;
  margin: auto;
}

.weather-temp-units {
  font-size: 20px;
  margin: auto;
  position: relative;
  top: -15px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  font-size: 16px;
  text-align: center;
  padding-bottom: 30px;
}

.forecast-icon {
  font-size: 55px;
}

footer {
  text-align: center;
  font-size: 12px;
  padding: 15px 0 0;
  border-top: 2px solid #ebe7e7;
}