body {
  font-family: Sans-Serif;
  margin: 0px;
  background-size: cover;
}
* {
  box-sizing: border-box;
}
.no-states {
  display: none;
}
h1 {
  margin: 0px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}
#container {
  max-width: 1000px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#form-wrap,
#weather-wrap {
  padding: 20px;
  margin: 10px 0;
  width: 100%;
  background-color: rgba(245, 245, 245, 0.45);
  box-shadow: 0 6px 20px rgb(0 0 0 / 30%);
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
input {
  display: block;
  font-size: 1rem;
  padding: 8px;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid grey;
  min-width: 100px;
  width: 100%;
  flex: 1 1 auto;
}
#city-state-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#country-wrap,
#city-wrap,
#state-wrap {
  flex: 1;
  display: flex;
  width: 100%;
}
#temps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#big-temp {
  font-size: 4rem;
}
#condition-high-low {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-end;
}
#weather-description {
  margin-left: 50px;
}
#small-temp {
  font-size: 1.5rem;
}

@media (min-width: 600px) {
  #form-wrap,
  #weather-wrap {
    padding: 20px;
    border-radius: 14px;
    width: 50%;
    min-width: 380px;
    max-width: 600px;
  }
  #container {
    max-width: 1000px;
    height: 100vh;
    margin: 0 auto;
    padding: 10px;
    justify-content: space-evenly;
  }
}
