* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  font-family: 'Poppins', sans-serif;
}

header {
  background-color: #006d77;
  min-height: 30vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 5rem;
  color: #edf6f9;
  margin-bottom: 1rem;
}

header input {
  border: none;
  outline: none;
  border-radius: 3px;
  width: 30rem;
  padding: 0.5rem;
  margin: 0 0.5rem;
  font-size: 2rem;
  background-color: #edf6f9;
}

header button {
  border: none;
  outline: none;
  border-radius: 3px;
  padding: 0.8rem 2rem;
  background: #edf6f9;
  margin-right: 0.5rem;
  cursor: pointer;
}

header form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#location-logo {
  font-size: 3rem;
  color: #edf6f9;
}

#location-logo:hover {
  color: rgba(128, 128, 128, 0.8);
  cursor: pointer;
}

#header-logo {
  font-size: 5rem;
}

main {
  background: #83c5be;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.weather-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30rem;
  border-radius: 5px;
  max-width: 80%;
  height: 35rem;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5%;
}

.weather-container h2 {
  font-size: 3rem;
  text-align: center;
}

.weather-container .icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.weather-container img {
  width: 30%;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/*# sourceMappingURL=main.css.map */