* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 2em;
  background: url("../images/mountain.jpg") no-repeat center center/cover;
  color: #ffffff;
  height: 100vh;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  position: relative; /* the container's position has to be relative so that the overlay position can be absolute*/
  height: 100%; /* To shift all the contents in the middle*/
}

/* for overlay on the background image */
.container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

input {
  padding: 1em;
  font-weight: 3rem;
  border-radius: 15px 0 15px 0;
}

.city {
  font-size: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.date {
  font-size: 1rem;
}

.temp {
  font-size: 6rem;
  font-weight: bold;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.weather {
  font-size: 3rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/* .hi-low {
  font-size: 1.5rem;
} */
