/* 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;
}

/* Gallery */

.gallery {
    text-align: center;
    padding: 3% 15% 3% 15%;
}

.gallery-header {
    color: #cccc00;
    text-shadow: 1px 1px 1px #000000;
    font-weight: bold;
    font-size: 250%;
    font-family: Georgia;
}

.carousel {
    background-color: #0d0d0d;
    border-radius: 1%;
}

.gallery-img {
    width: 370px;
    margin: auto;
}

.land {
    width: 650px;
    margin: auto;
}

/* Reviews */

.reviews {
    text-align: center;
    background-color: #ffffff;
    border-bottom: 2px solid #e3e3e3;
    padding: 5%;
    font-family: Lucida Handwriting;
}

.reviewsHeader {
    padding-bottom: 5%;
}

.reviews p {
    text-align: justify;
}

.checked {
  color: orange;
}

/* 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 */
}