 .anchor {
   display: block;
   height: 52px; /*same height as header*/
   margin-top: -52px; /*same height as header*/
   visibility: hidden;
  }

.milonga {
    font-family: 'Milonga', cursive;
   }

.whitesmoke {
   font-color: #F5F5F5;
   } 

.bg-darkgreen {
    background-color: DarkGreen;
   }

.navbar {
    border-bottom: 1px solid lime;
   }

a.nav-link:hover {
    background-color: DarkSlateBlue;
   }

.deepblue {
    background-color: #000066;
   }

.text-yellow {
    color: #ffff00;
   }
 
 /* Make the image fully responsive */
  .carousel-inner img {
      width: 100%;
      height: 100%;
   }

  .btn {
    transition: box-shadow 0.5s;
   }
  
  .btn:hover {
    box-shadow: 5px 0px 40px rgba(255,255,255, .7);
   }
  
  .panel {
    border: 1px solid success; 
    padding: 15px;
    border-radius:5px;
    transition: box-shadow 0.5s;
   }

.panel:hover {
    box-shadow: 5px 0px 40px rgba(255,255,255, .7);
   }

footer.small {
    line-height: 1.3;
    font-size: 16px;
    text-decoration: none
   }  

/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
   }

.myImg:hover {opacity: 0.9;}

/* The Modal (background) */
.modal {
    padding-top: 50px; /* Location of the box */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
   }

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
   }

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 100px;
   }

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
    animation-name: zoom;
    animation-duration: 0.6s;
   }

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
   }

/* The Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 35px;
    color: #ffa500;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
   }

.close:hover,
.close:focus {
    color: #ffff00;
    text-decoration: none;
    cursor: pointer;
   }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 800px){
    .modal-content {
        width: 100%;
    }
}
