* {
  box-sizing: border-box;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
.header1 {
 display: flex;
 flex-wrap: wrap;

 font-size: 1em;
 color: white;
 background-color: green;
 border: 1px solid black;
 padding: 2px;
}
.header2 {
 display: flex;
 flex-wrap: wrap;

  font-size:4em;
  color: white;
 background-color: black;
 border: 0px solid springgreen;
 padding: 10px;
}

 .footer {
  display: flex;
 flex-wrap: wrap;
  justify-content: center;
 background-color: black;
 border: 1px solid springgreen;
 padding: 10px;
 color: white;
 text-align: center;
 font-size: 1em;
 position: fixed;
 bottom: 0;
 width: 100%;
 }

/* Six buttons with code link to some pages in this project */
 .button-group {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 margin-top: 10px;
 }

 .button {
 display: inline-block;
 padding: 3px;
 margin: 3px;
 background-color: green;

  border: 1px solid white;
 border-radius: 3px;
 font-size: 1em;
 color: white;
 text-align: center;
 text-decoration: none;
 }

/* Fixed background */
 body {

   background-color: #FFFFFF;
   background-image: url('ENIMGIPG.jpg');
   background-attachment: fixed;
   background-position: center center;
   background-repeat: repeat;
   background-size: 100% 100%;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;

    }


         /* Style the container */
        .image-container {
            width: 400px; /* Adjust the width as needed */
            height: 500px; /* Set the desired height */
            overflow: auto; /* Add scroll bar when content exceeds container height */
            background-color: rgba(0, 0, 0, 0.5) ; /* White background */
            border: 1px solid BLACK; /* Optional border for visual clarity */
            padding: 3px; /* Add some padding for readability */
        }
        /* Style the text inside the container */
        .image-content {
             display: flex;
 flex-wrap: wrap;


        }



           /* Style the container */
        .text-container {


            width: 400px; /* Adjust the width as needed */
            height: 300px; /* Set the desired height */
            overflow: auto; /* Add scroll bar when content exceeds container height */
            background-color: black; /* White background */
            border: 1px solid red; /* Optional border for visual clarity */
            padding: 3px; /* Add some padding for readability */

        }
        /* Style the text inside the container */
        .text-content {
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: #333; /* Optional text color */
        }








        /* CSS for the progress bar */
        #myProgress {
            width: 250px;
            height: 36px;
            background-color: white;
            border: 3px solid  red;
        }
        #myBar {
            width: 250px;
            height: 30px;
            background-color: #0099FF;
            text-align: center;
            line-height: 30px;
            color: white;
        }



     .button:hover {
         background-color: gray;
         color:white;
     }

     a:hover {
         background-color: rgba(0, 128, 0, 0.3);
         color:green;
     }




 /* Flexible layout responsive design */

 .header1 {
 font-size: 0.5em;
 padding: 2px;
 }
 /* Big red header with red border */
 .header2 {
 font-size: 4em;
 padding: 2px;
 }
 /* Six buttons with code link to some pages in this project */
 .button-group {
 margin-top: 6px;
 }
 .button {
 padding: 3px;
 margin: 3px;
 font-size: 1em;
 }

    .buttonm-group {
 margin-top: 3px;
 }
 .buttonm {
 padding: 3px;
 margin: 3px;
 font-size: 1em;
 }





.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.column {
  flex: 100%;

  padding: 5px;
}
.column img {

  width: 100%;
  height: auto;

      }
@media screen and (max-width: 320px) {
  .column {

    width: 100%;
  }



}

