body {
  font-size: 16px;
  font-family: "Lexend Deca", sans-serif;
  background: url("../images/mountain-clouds.jpeg");
  background-size: auto;
}

h2 {
  text-align: center;
  font-size: 5rem;
  margin-top: 2rem;
}

form {
text-align: center;
margin-top: 2rem;
display: flex;
justify-content: center;
}

input {
  display: inline-block;
  height: 2rem;
  text-align: center;
}

button {
  display: inline;
  border: none;
  margin-left: 2rem;
  width: 2rem;
  height: 2rem;
}

.info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2rem;
}


.weather, .city, .bonus{
  height: 20rem;
  width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
}

.city {
  margin-right: 2rem;
}

#city {
  font-size: 2rem;
  text-transform: uppercase;
}

#temperature, .weatherApp {
  font-size: 3rem;
}

#description, p{
  font-size: 2rem;
  text-align: center;
}

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

footer>a {
  text-decoration: none;
  color: black;
  font-size: 25px;
}
@media only screen and (max-width: 600px) {
  body {
    font-size: 10px;
  }
  header {
    display: flex;
    justify-content: center;
  }
  h2 {
    font-size: 4rem;
  }

  input {
    display: block;
  }

  .info {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
  }

}
