<style>
/*The next two elemnets specify a margin for all other elements 
In the html, make the body tag like this: <body bgcolor="#E2E2E2" class="page-container"-->
.page-container {
    margin: 25px;
}
body.page-container {
    margin: 25px;
}
But instead I am going to try and indent selectively 
Tag below seems to do nothing*/


/* Button Hover behavior*/

        header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 10px;
        }
table {
          width: 100%;
      border-collapse: collapse;
    }

    td {
      padding: 12px;
    }

    img {
      width: 100%;
      display: block;
    }
 
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            margin-bottom: 30px;
        }

        .section h2 {
            color: #333;
        }

        .column {
            width: 100%;
            float: left;
            box-sizing: border-box;
            padding: 10px;
        }
/* Style image rotation In a 2-image table, I had an overflow prob; thus max-width of 80%*/
    .rotated-image {
      transform: rotate(90deg);
      max-width: 80%;
      height: auto;
      width: auto; /* Adjust the width as needed */
    }
.column p .bordered-image {
}
/* Style for cells with simple text */
.text-cell {
    vertical-align: top;
    padding: 10;
    border: none;
  /* Add specific styling for cells with simple text */
}

/* Style for cells with a bordered box */
.bordered-box-cell {
  border: 1px solid #000;
  padding: 2px;
}
.bordered-box-cell p {
  margin: 0; /* Remove default margin on paragraphs */
  vertical-align: top; /* Align paragraphs to the top */
}
p {
    font-size: 18px;
}
/* deleting 92-115 in styleplay. Not sure I need these */

} /* End deleted part */



        @media (min-width: 600px) {
            .column {
    width: 0pc;
            }
        }

        @media (min-width: 900px) {
            .column {
    width: 100%;
            }
        }

        img {
    width: 50px;
    height: auto;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
    body,td,th {
    font-family:  font-family: Georgia / serif:
    font-size: 16px;
}


a:link {
    color: #1B45F5;
}
a:visited {
    color: #FA3D40;
}
/* Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia / Times New Roman / serif;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 45px;
        color: #0725A3;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 10px;
}
h5 {
    font-size: 8px;
}
    .full {
    font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
    font-size: 18px;
    font-style: normal;
    position: relative;
    height: auto;
    width: auto;
    max-width: 100%;
}
    .half {
    height: auto;
    width: auto;
}
    .indent {
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
}
    .comment {
    font-size: 16px !important;
    color: red !important;
    font-weight: bold;
}
/* Code that makes Megachile-like image magnification */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
}

.image-container {
    position: relative;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-image {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.view-button {
    margin-top: 5px; /* Add margin to separate the image from the button */
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.caption {
    margin-top: 5px; /* Add margin to separate the image from the caption */
    text-align: center;
    font-style: italic;
    font-size: 17px !important;
}
 .heavy-rule {
        border-style: solid; /* Explicitly set border style */
       border-color: #979595;
        border-width: 2px;
       width: 100%;
    }

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.overlay-image {
    width: 90vw; /* 90% of the viewport width */
    height: auto;
    cursor: pointer;
}

/* End code that makes Megachile-like image magnification Expt bit added below, midnite Dec 28*/
.overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}


</style>
