
  
:root {
    
    --CurlewLightLightBlue: #385b66;
    --CurlewLightBlue: #1F363D;
    --CurlewLightLightBlueTransp: #1f363dc8;
    --CurlewBlue: #161B1C;
    --CurlewRed: #A44A3F;
    --CurlewYellow: #FFBA08;
    --CurlewBeige: #FFEABB;
    --CurlewBeigeDark:  #FFE099;
    scroll-behavior: smooth;

    font-family: 'M PLUS Rounded 1c','sans-serif';
    
    font-stretch:ultra-condensed;
    
    
  }

  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */

    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    
    height: 100%; /* Full height */
    
    
    /*overflow: auto; /* Enable scroll if needed */
    background-color:var(--CurlewBlue); /* Fallback color */
    background-color:var(--CurlewLightLightBlueTransp);

    backdrop-filter: blur(10px);
  }
  
  /* Modal Content (Image) */
  .modal-content {
    /*background-color: #A44A3F;/**/

    
    margin: 2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
  }
  #modalImg
  {
    max-width: 80vh;
    max-height: 80vh;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: var(--CurlewBeige);
    font-size: 1.2rem;
    padding: 10px 0;
    height: 150px;
  }
  #caption
  {
    height:fit-content;
  }
  /* Add Animation - Zoom in the Modal */
  .modal-content {
    animation-name: zoom;
    /*height: fit-content;*/
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1) }

  }
  
  /* The Close Button 
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color:var(--CurlewBeige);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  */
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
    }
  }