/* Add some styling for the form and weather container */
body {
  font-family: "Inter", sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Inter", sans-serif;
  -webkit-transition: background-color 0.15s ease-in;
  transition: background-color 0.15s ease-in;
}

section {
  margin: 15% auto 0;
  max-width: 600px;
  text-align: center;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

label {
  position: relative;
}

input {
  font-size: 1.25rem;
  max-width: 12rem;
}
@media (max-width: 500px) {
  input {
    font-size: 1.15rem;
    max-width: 9rem;
  }
}

input[type=text] {
  outline: 0;
  background-color: #f3f3f4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.5rem 0.5rem 0.5rem 2.4rem;
  border: 0;
  border-right: 0;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: 0;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(243, 243, 244);
  box-shadow: 0px 0px 0px 2px rgb(243, 243, 244);
}
input[type=text]:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgb(158, 158, 167);
  box-shadow: 0px 0px 0px 2px rgb(158, 158, 167);
}

a {
  color: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.search-icon {
  position: absolute;
  left: 0.65rem;
  top: 0.55rem;
  z-index: 1;
}
.search-icon svg {
  stroke: #9e9ea7;
}

#get-weather-button {
  background-color: black;
  border: 0;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  color: white;
  font-size: 1.25rem;
  margin-left: 0;
  padding: 0.5rem 1rem;
  margin-left: -2px;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(0, 0, 0);
  box-shadow: 0px 0px 0px 2px rgb(0, 0, 0);
}
@media (max-width: 500px) {
  #get-weather-button {
    font-size: 1.15rem;
    padding: 0.5rem 0.65rem;
  }
}
#get-weather-button:hover {
  background-color: #4d4d4d;
  color: white;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(77, 77, 77);
  box-shadow: 0px 0px 0px 2px rgb(77, 77, 77);
}

#toggle-button {
  background-color: transparent;
  border: none;
  color: black;
  font-size: 1.25rem;
  margin: 2rem 0 0;
  padding: 0;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
#toggle-button:hover {
  color: #999999;
}

#weather-container {
  margin: 1rem 0 0;
  /* padding: 1rem; */
  /* border-radius: 4px; */
  text-align: center;
}

#weather-container p {
  margin: 0;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#temperature-container {
  font-size: 5.5rem;
  font-weight: 700;
}

#location-container {
  font-size: 1.5rem;
  font-weight: 400;
}

#description-container {
  margin: 1rem;
}

.location-info {
  margin: 3rem auto 0;
}

.additional-info {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.additional-info div {
  margin: 0 1.25em;
}
.additional-info svg {
  height: 2em;
  margin-bottom: 0.5em;
  width: 2em;
}
.additional-info #rainchance-container svg,
.additional-info #humidity-container svg {
  height: 1.75em;
  width: 1.75em;
}

.info {
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
  margin: 3rem auto 0;
  line-height: 1.75;
}
.info a {
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.info a:hover {
  color: black;
}
/*# sourceMappingURL=style.css.map */