body {
  font-family: "Montserrat", sans-serif;
}

.weather-app-wrapper {
  max-width: 400px;
  margin: 30px auto;
}

.weather-app {
  padding: 20px;
  border: 1px solid;
  border-radius: 5px;
  background-image: linear-gradient(
    to top,
    #dad4ec 0%,
    #dad4ec 1%,
    #f3e7e9 100%
  );
}

h1 {
  color: #000000;
  font-size: 24px;
  font-weight: 200;
  line-height: 28px;
}

ul {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000000;
  font-weight: 200;
  font-weight: 20px;
  text-transform: capitalize;
}
li:first-letter {
  text-transform: capitalize;
}

.weather-temperature img {
  margin-right: 50px;
  height: 64px;
  width: 64px;
}

.weather-temperature strong {
  color: #000000;
  font-weight: 400;
  line-height: 64px;
  font-size: 64px;
}

.weather-temperature .units {
  position: relative;
  font-size: 16px;
  top: -34px;
}

.weather-temperature .active {
  color: #000000;
  cursor: default;
}

.weather-temperature .active:hover {
  text-decoration: none;
}

.weather-forecast {
  margin-top: 20px;
}

.weather-forecast h3 {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  height: 15px;
  line-height: 15px;
  padding-top: 7px;
}

.weather-forecast img {
  display: block;
  margin: 0 auto;
  height: 48px;
  width: 48px;
}
.weather-forecast-temperature {
  text-align: center;
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  height: auto;
  line-height: 15px;
  white-space: nowrap;
}

.form-control {
  border-radius: 30px;
  font-size: 14px;
}

.btn {
  border-radius: 30px;
  font-size: 14px;
  background-color: blanchedalmond;
  border-color: #6c7590;
  color: #6c7590;
}
