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

body {
  font-family: "Roboto", sans-serif;
  width: 100%;
}

main {
  width: 960px;
  margin: auto;
}

#mainContainer{
  width: 100%;
  border: 2px solid #006B82;
  margin: auto;
}

#destination_banner{
  width: 100%;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
  color: #006B82;
}

h1 span{
  color: orange;
}

#UIContainer {
  display: flex;
  flex: 1;
  border: 5px solid #006B82;
  margin-top:5px;
  padding:1rem;
}

#searchButton {
  width: 250px;
  height: 4rem; 
  padding: 1rem;
  background-color: #006B82;
  color:white;
  margin-top:2rem;
  border-radius: 10px;
  font-size:medium;
  font-weight: bold;
}

#searchButton:hover {
  cursor: pointer;
  background-color:#373231;
}

/* ! Week 9 Added styling to UI */
#searchButton, fieldset {
  margin-right: 1rem;
}

fieldset {
  display: inline-block;
  /* height: 100px; */
  width: 400px;
  padding: 0.25rem;
  border: none;
}

h2{
  color:#006B82;
  font-weight: bolder;
}

ul {
  list-style: none;
}

li{
  font-weight: bolder;
}

li span{
  color:gray;
  font-weight: lighter;
}

/* ******* hide beach & nature sceen ******* */
#natureInterface, #beachInterface{
  opacity: 0
}

@media only screen and (min-width: 400px) {
  #SVGObject{
    width: 100%;
  }
}