


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --lightblue:#6EB1E5;
    --midblue:#324A68;
    --darkblue: #273A52;
  }
  
h2 {
  margin-bottom: 1em;
}


  .blue-theme {
    font-family: Arial,Helvetica,sans-serif;
    color: white;
    background: var(--darkblue);
  }


   .header-table {
        background: var(--midblue);
        width: 99%;
        position: fixed;
        align-self: center;
        padding-top: 2.6cm;
   }

   .header-title {
        font-size: 24px;
        font-weight: bold;
        height: 35px;
   }

  .menu {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    padding-right: 30px;
    text-align: left;
    align-self: left;
    padding-bottom: 1cm;
  }

 .menu-item {
    float: left;
    padding-right: 30px;
 }  

  .menu-link {
    display: block;
    color: white ;
    text-decoration: none;
  }

   .menu-link-active{
    display: block;
    color: white ;
    text-decoration: none;
    border-bottom: 2px solid var(--lightblue);
   }

  .menu-link:hover {
    color:var(--lightblue);
  }

   .mid-page-text-block {
    max-width: 750px;
    text-align: center;
    line-height: 24px
   }

   .footer {
    background: var(--midblue);
    width: 100%;
    align-content: right;
}
a { 
    color: var(--lightblue)
}


.event-table {
        background: var(--midblue);
        width: 80%;
   }


.event-header {
  padding: 8px 3px;
  background-color: var(--lightblue);
  color: var(--darkblue);
}

.event-row {
  padding-top: 8px;
  padding-bottom: 5px;
  padding-left: 3px;
  padding-right: 3px;
  
}


