html{
    background-color: #e4e4e4cc;
    margin: 2%;
}
body{
    font-family: helvetica, arial, sans-serif;
    max-width: 1080px;
    font-size: 18px;
	margin: auto;
	background-color: #fafafaf5;
}
.logo{
    text-align: center;
}
.logo1, .logo2{
    font-family: monospace;
    font-size: 10px !important;
    display: inline-block;
    justify-content: center;
    align-content: center;
    max-width: 540px;
    margin: auto;
}
.website{
    text-align: center;
    align-content: center;
    padding-left: 10px;
	padding-right: 10px;
}
.content{
    text-align: left;
    margin: 2%;
}
.navbar {
    text-align: center;
}
h1{
    font-family: Tahoma;
}
a{  
    color:  blue;
}
a:hover, a:active{
    color: red;
    cursor: pointer;
}
.copyright{
    text-align: center;
    font-size: 0.8rem;
}
img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
td, th {
border: 1px solid black; 
text-align: center;
font-size: 22px;
font-family: serif;
max-width: 90vw !important;
} 
table{
    max-width: 90% !important;
}
.imgLink { border: none; background: none; }
.imgLink:active img, .imgLink:focus img
{
    width: auto !important;
    height: 90vw !important;
    max-width: 95% !important;
    max-height: 95% !important;
    margin: auto;
    border: 0px;
    position: fixed;
    overflow: auto;;
    top: 0; left: 0; bottom: 0; right: 0;
    cursor: zoom-out;
}
*{
    box-sizing: border-box;
}
.column {
    float: left;
    width: 50%;
    padding: 5px;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}







/* (A) LIGHTBOX BACKGROUND */
/*
#lightbox {
    width: auto !important;
    height: 90vw !important;
    max-width: 90% !important;
    max-height: 90% !important;
    margin: auto;
    border: 0px;
    position: fixed;
    overflow: auto;;
    top: 0; left: 0; bottom: 0; right: 0;
    cursor: zoom-out;
   
    /* (A2) BACKGROUND */
   
    /* (A3) CENTER IMAGE ON SCREEN */
    /*
    display: flex;
    align-items: center;
    align-items: center;
   
    /* (A4) HIDDEN BY DEFAULT */
    /*
    visibility: hidden;
    opacity: 0;
   
    /* (A5) SHOW/HIDE ANIMATION */
    /*
    transition: opacity ease 0.4s;
  }
   
  /* (A6) TOGGLE VISIBILITY */
  /*
  #lightbox.show {
    visibility: visible;
    opacity: 1;
  }
   
  /* (B) LIGHTBOX IMAGE */
  /*
  #lightbox img {
    /* (B1) DIMENSIONS */
   
    /* (B2) IMAGE FIT */
    /* contain | cover | fill | scale-down */
    /*
    object-fit: contain;
  }
   
  /* (C) LIGHTBOX IMAGE - FULLSCREEN ALTERNATIVE
  #lightbox img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
