html {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background: radial-gradient(
    879px at 10.4% 22.3%,
    rgb(255, 235, 238) 0%,
    rgb(186, 190, 245) 93.6%
  );
  background-repeat: no-repeat;
  background-size: cover;
}

h1 {
  color: #7c7c7c;
  font-size: 24px;
  font-weight: 100;
  line-height: 28px;
  margin: 0;
}

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

li {
  color: #7c7c7c;
  font-size: 16px;
  font-weight: 100;
  height: 19px;
  line-height: 1;
  list-style: none;
}

li::first-letter {
  text-transform: capitalize;
}

.container {
  margin: 0px auto;
  padding: 0px 20px;
  min-height: 100vh;
}

.weather-app {
  border: 1px solid #dadde1;
  background-color: rgba(111, 82, 163, 0.3);
  padding: 15px;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 600px;
}

.search-form {
  margin-bottom: 20px;
}

.form-control {
  border: 1px solid #fff;
  color: #fff;
}

.form-control:hover {
  border: 1px solid #7c7c7c;
  color: #7c7c7c;
  background-color: transparent;
}

.btn-current-local {
  border: 1px solid #fff;
  color: #fff;
}

.btn-current-local:hover {
  border: 1px solid #7c7c7c;
  color: #7c7c7c;
  background-color: transparent;
}

.weather-icon {
  height: 64px;
  width: 64px;
  margin-right: 10px;
}

.temperature {
  color: #fff;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

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

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

.units {
  color: #7c7c7c;
  position: relative;
  top: -34px;
}

.weather-forecast {
  margin: inherit;
  text-align: center;
  border: 1px solid #fff;
  border-radius: inherit;
  padding: inherit;
}

.weather-forecast-date {
  color: #7c7c7c;
  font-size: medium;
}

.weather-forecast-temperature-min {
  opacity: 0.5;
}

.footer {
  height: 50px;
  margin-top: -50px;
  text-align: center;
}

.footer p {
  color: #000;
}

