* {
  margin: 0px;
  padding: 0px;
}


body {
  background-color: rgb(231, 219, 181);
}

#cityObj {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 5px;
  border: 4px solid rgb(71, 133, 112);
  margin-top: -10px;
}

main {
  width: 955px;
  margin: auto;
  margin-top: -5px;
}

.userGuid {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  background-color: rgb(71, 133, 112);
  width: 90%;
  border-radius: 15px;
  box-shadow: 3px 3px 8px rgb(71, 133, 112, 0.9);
}

#UIContainer {
  display: flex;
  flex: 1;
  justify-content: center;
}

p {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  padding: 10px;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

#searchButton {
  border-radius: 5px;
  margin-top: 0.5rem;
  background-color: rgb(71, 133, 112);
  font-family: 'Poppins', sans-serif;
  color: rgb(252, 160, 0);
  font-size: 19px;
  width: 15%;
  margin-left: 45px;
  border: none;
}

#searchButton:hover {
  opacity: 0.9;
}

#temperatures {
  border-radius: 5px;
  margin-top: 0.5rem;
  background-color: rgb(71, 133, 112);
  font-family: 'Poppins', sans-serif;
  color: rgb(252, 160, 0);
  font-size: 20px;
  padding: 10px;
  margin-top: -1px;
  border: none;

}

#btnA,
#btnB {
  display: inline-block;
  border-radius: 5px;
  margin-top: 0.5rem;
  margin: 5px;
  background-color: rgb(71, 133, 112);
  font-family: 'Poppins', sans-serif;
  color: rgb(252, 160, 0);
  font-size: 19px;
  padding: 10px;
  margin-top: -3px;
  margin-right: -3px;


}

#buttonA,
#buttonB {

  color: rgb(255, 255, 255);
  font-size: 18px;
}

.temp {

  display: block;
  margin: 0 auto;
}

.btns {

  display: flex;
  justify-content: right;
  margin-right: 40px;
}

#temperature {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  color: rgb(255, 255, 255);

}

#searchButton:hover {
  cursor: pointer;
}

fieldset {
  display: inline-block;
  padding: 0.5rem;
  border: none;
  margin-left: 1rem;
}

ul {
  list-style: none;
}


@media only screen and (max-width: 768px) {

  main,
  .userGuid {
    width: 90%;
  }
}

/* Media query for even smaller screens */
@media only screen and (max-width: 576px) {

  main,
  .userGuid {
    width: 100%;
  }

  #searchButton,
  #buttonA,
  #buttonB {
    width: 15%;
    font-size: 10px;
  }

  .userGuid,
  #temperatures,
  #temperature,
  #btnA,
  #btnB {
    font-size: 10px;
  }
}