table,th,td{
    border:1px solid black;
    border-collapse:collapse;
  }
  .image-row{
    display:flex;
    
  }

  
  .footer-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
    width: calc(100% - 64px);
    background: slategray;
    margin: 32px;
    border-radius: 10px;
    position: fixed;
    bottom: 0px;
    left: 0;
    background-color: #144691;
    font-weight: bold;
    max-width: 1024px;
    margin: 10px auto;
    left: 0;
    right: 0;
}
.flex-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

.flex-child {
    width: 100%;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    color: white;
}
a:link:active, a:visited:active {
    color: (internal value);
}


.HumanPractices h1{
  font-size: 80px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color:transparent;
  -webkit-text-stroke: 1px rgb(41, 39, 39);
  position: relative;
  margin-top: 3%;
  ;
}
.HumanPractices h1::before{
  content: "HumanPractices";
  position: absolute;
  width: 0;
  height: 100%;
  overflow: hidden;
  color: #7092BE;
  border-right: 5px solid #7092BE;
  transition: 1s ease-in-out;
}
.HumanPractices h1:hover::before{
  width: 653px;
  filter: drop-shadow(0 0 25px #7092BE);
}

#myButton {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myButton:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}