
  
  body {
    margin: auto;
    font: 1.5rem "Fira Sans", sans-serif;
    color: hsl(0, 0%, 0%);
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    overflow-y:hidden;
    overflow-x: hidden;
  }
  
  h1 {
    text-align: center;
  }
  
  h2 {
    text-align: center;
    color: green;
  }

  h2 span {
    color: red;
  }
  
  h2 strong {
    font-weight: bold;
    color: black;
  }
  
  .container {  
    width:100%;
    aspect-ratio: 16/9;
    display: grid; 
    grid-template-columns: 1fr 11fr 1fr; 
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr; 
    gap: 0px 0px; 
    grid-template-areas: 
     "Header Header Header"
     ". A . "
     ". B . "
     ". C . "
     "Bottom Bottom Bottom"; 
  }
  
  .Header { 
    grid-area: Header; 
    margin-left: -1.2rem;
    width: 100%;
    height: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  .Top { 
    grid-area: A; 
    margin: auto;
    ;}
  
  .TopMiddle { grid-area: B; 
    margin:auto}
  
  
  .Middle { grid-area: C; } 
   
  .Bottom { 
    grid-area: Bottom;
    display: flex;
  }
  

  /* unvisited link */
  a:link {
    color: rgb(255, 255, 255);
    text-decoration: none;
  }
  
  /* visited link */
  a:visited {
    color: rgb(255, 255, 255);
  }
  
  /* mouse over link */
  a:hover {
    color: rgb(255, 255, 255);
  }
  
  /* selected link */
  a:active {
    color: rgb(82, 82, 82);
  }
  
  
  @media screen and (max-width: 620px) {
    
  
  }
  
  
  html {
    height: 100%;
    background:rgb(255, 255, 255);
    overflow: hidden;
  }
  
  div.image-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fff; 
    z-index: 999999;
    text-align: center;
}

.image-holder {
    position:relative ;
    left: 20%; 
}

.logo {
  max-width: 250px;
  display: block;
  margin: 0 auto 2em;
}