  .top-bar{
    background-color: rgb(10, 137, 168);
    font-family: sans-serif;
    font-size: 21px;
    color: #eeeeee;
    text-align: center;
  }

  .p{
    font-family: sans-serif;
   
  }

  .container{
    background-color: rgb(10, 137, 168);
  }
.red{
  background-color: red;
  color: white;
}
.green{
  background-color: green;
  color: white;
}
  .park{
    height: 500px;
    width: 300px;
    display:flex; 
    justify-content: center;
    flex-direction: column;
    border: 4px solid rgb(10, 137, 168);
    align-items: center;
    margin: 5px;
  }
  .parkImg{
    height: 300px;
    width: 300px;
  }
  .h5{
    text-align: center;
    font-weight: bold;
  }
  

  .footer-left-content{
    font-family: sans-serif;
    font-size: 15px;
    color: #eeeeee;
  }
  .menu-text{
    font-family: sans-serif;
    font-size: 15px;
    color: #eeeeee;
  }
  
  .submit-btn{
    display: inline-block;
    font-family: sans-serif;
    background-color: rgb(239, 246, 248);
    border-radius: 10px;
    border: 3px double #cccccc;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 20px;
    width: 200px;
    margin-top: 3px;
  }
    
  .submit-btn:hover{
    box-shadow: 4px 3px 6px #034361;
}

  button {
    display: inline-block;
    font-family: sans-serif;
    background-color: rgb(239, 246, 248);
    border-radius: 10px;
    border: 3px double #cccccc;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 20px;
    width: 200px;
    margin-top: 3px;
  }
    
  .submit-btn:hover{
    box-shadow: 4px 3px 6px #034361;
}
  .has-submenu{
    font-family: sans-serif;
    font-size: 15px;
    color: #0a0230;
}
  .has-submenu:hover{
  box-shadow: 4px 3px 6px #034361;
}
  /* css styling for modal*/

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #FEFEFE;
    margin: 30% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#close-modal  {
  float: right;
}


