/* Navigator */

.nav {
    background-color: #ffffff;
    border-bottom: 2px solid #a0a0a0;
}

/* Navigator Ul */

.navul {
    margin: auto;
}

.navul li {
    padding: 2%;
    font-family: Georgia;
}

.navul li.active {
    border-bottom:  2px solid #cccc00;
    background-color: #f5f5f5;
    border-radius: 2%;
}

.navul li:hover {
    background-color: #f5f5f5;
}

/* Contact */

.header-contact {
    text-align: center;
    padding: 3% 0 0 0;
    font-family: Georgia;
}

.contact {
    text-align: center;
    border-bottom: 2px solid #c0c0c0;
    padding: 5%;
    font-family: Lucida Handwriting;
}

.info-header {
    color: #cccc00;
    text-shadow: 1px 1px 1px #000000;
    font-weight: bold;
    font-size: 300%;
}

/* Map */

.map {
    width: 100%;
    height: 500px;
}

#map {
    margin: 0 auto;
    width: 70%;
    height: 80%;
    z-index: -1;
}

/* Info */

.info {
    text-align: center;
    background-color: #ffffff;
    border-bottom: 2px solid #a0a0a0;
    padding: 5%;
    font-family: Lucida Handwriting;
}

.info a {
    color: #cccc00;
}

.info a:hover {
    color: #cccc00;
    text-decoration: underline;
}

/* Top Button */

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #cccc00; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}