#LittleRockMap {
  display: block;
  height: 500px;
  border-radius: 10px;
}

h1 {
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  
  
}

ul{
  display: flex; 
  justify-content: space-around; 
  list-style-type: none;
  column-gap: 10px;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  padding: 0;
}

code{
  color:#084F70}

button{
  height: 100%;
  outline:none; 
  cursor:pointer; 
  padding: 5px 20px;
  border-radius:20px;
  background-color: #084F70;        color:white;
  font-size: 21px;
  font-family: 'Roboto Condensed', sans-serif;
 
  transition:all .3s ease}

button:hover{
  background-color: #C5C3C4;           color: #084F70}

@media (max-width: 850px) {
  ul {
    flex-direction: column;
  }
  button{
    width: 100%;
    margin-bottom: 10px;}

}