<!-- Let's use cascading style sheets  -->




body {
  font-family: Monospace, courier;
  background: rgb(211, 216, 242);
}


/* This describes how I want the header to look */
.header {
  border: 3px solid; 
  border-color: rgb(66, 66, 58);
  font-size: 50px;
 font-family: Monospace, courier;
  text-align: center;
  background: rgb(175, 180, 201);
   padding: 10px;
   margin-left: 10px;
}

body {
    background-color: lightgray;
}




.container {
            display: flex;
            justify-content: space-around;   
            gap: 20px;                       
            padding: 20px;
        }


.map-link-box {
            display: flex;
            justify-content: space-around;
            flex-direction: column;        
            align-items: center;          
            width: 180px;                 
            padding: 15px;
            border: 2px solid #333300;
            border-radius: 10px;
            background-color: lightgray;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: background-color 0.3s, border-color 0.3s;
            text-align: center;
	} 

.map-link-box img {
	    width: 100%;  
            cursor: pointer;                  
            height: auto;                  
            border-radius: 8px;             
        }

.map-link-box img:hover {
      opacity: 0.8;
    }
   
.thumbnail {
      width: 150px;       
      cursor: pointer;    
      transition: 0.3s;   
    }
    .thumbnail:hover {
      opacity: 0.8;       
    }

.modal {
      display: none;      
      position: fixed;    
      z-index: 1;         
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8); 
    }

  
    .modal-content {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 90%;
    }

.map-link-box img {
      width: 150px;       
      cursor: pointer;    
      transition: 0.3s;
    }
    .map-link-box img:hover {
      opacity: 0.8;
    }

    /* The Modal (background) */
    .modal {
      display: none;      
      position: fixed;    
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8); 
    }

    /* Modal Content (the full-size image) */
    .modal-content {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 90%;
    }

    /* Close button */
    .close {
      position: absolute;
      top: 10px;
      right: 20px;
      color: #fff;
      font-size: 35px;
      font-weight: bold;
      cursor: pointer;
    }

function openModal(imageSrc) {
    document.getElementById("fullImage").src = imageSrc;
    document.getElementById("myModal").style.display = "block";
  }

  // Function to close the modal
  function closeModal() {
    document.getElementById("myModal").style.display = "none";
  }


/* This is how I want h1 to look */
h1 {
            font-family: Monospace, courier;
            font-size: 40px;
            color: rgb(48, 48, 41);
            text-align: center;            
            padding: 20px;
            border-radius: 10px; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
        }

/* This is how I want h2 to look */
h2 {
            font-family: Monospace, courier;
            font-size: 30px;
            color: rgb(48, 48, 41);
            text-align: center;            
            padding: 20px;
            border-radius: 10px; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
        }
/* This is how I want h3 to look */
h3 {
            font-family: Monospace, courier;
            font-size: 20px;
            color: rgb(48, 48, 41);
            border-radius: 10px; 
            letter-spacing: 2px; 
        }
/* This is how I want the table heading to look */
th {
            font-family: Monospace, courier;
            font-size: 20px;
            color: rgb(48, 48, 41);
            border-radius: 10px; 
            letter-spacing: 2px; 
        }

/* this is how i want the image dividers to look */
.imgDiv {
 border: 2px solid; 
  border-color: rgb(66, 66, 58);
  background-color: rgb(211, 216, 242);
  padding: 20px;
  width: 25%;
  text-align:center;
}

.small-image {
      width: 25px;  
      height: 25px;  
    }

/* This is how I want the dividers to look */
.SubDiv {
   border: 3px solid; 
 font-family: Monospace, courier;
  border-color: rgb(66, 66, 58);
   background-color: rgb(142, 145, 158);
   padding: 10px;
   margin-top: 10px;
   margin-left: 10px;
}

/* This describes how the table will look */
table {
  font-family: Monospace, courier;
  background-color: #f2f2f2;
  border-collapse: collapse;
  width: 100%;
tr:nth-child(even) {
            background-color: rgb(209, 209, 203);
        }
        tr:nth-child(odd) {
            background-color: #ffffff;
        }

}

td, th {
  border: 3px solid #dddddd;
  text-align: left;
  padding: 5px;
}

tr:nth-child(even) {
  background-color: rgb(255,51,40);
}
tr:nth-child(odd) {
  background-color: rgb(242,237,30);
}
