html{
  font-family: sans-serif;
  text-align: center;
  /*no margin 100% height to allow for fixed header*/
  margin: 0;
  height: 100%;
  background-color: #3c4f55;
  color: white;
}

header{
  padding: 2px;
}

h1{
  color: #adebeb;
}

a{
  color: #A6C6E3; /* Updated to a brighter color for accessibility standards for contrast ratio */
}
/* Style the top navigation bar */
.navbar {
  display: flex;
  justify-content: flex-end;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/*flex*/
body{
  display: flex;
  flex-direction: column;
  /*no margin 100% height to allow for fixed header*/
  margin: 0;
  height: 100%;
}

main{
  flex: 1;
  overflow: auto;
  /*overflow*/
  display: flex;
  justify-content: center;
}

.content{
    max-width: 1000px;
}

.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: lightgray;
}
.fill img {
    flex-shrink: 0;
    min-height: 100%
}

.block{

}

.block p{
  font-size: 20px;
  line-height: 1.5;
  color: #f8f8ff;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 10%;
}

.block a, ul{
  font-size: 20px;
  text-decoration-line: none;
}

form{
  display: block;
}

label{
  padding: 10px;
  text-align: center;
  font-size: 20;
  color: white;
}

.form-group{
  padding-top: 10px;
}

a {
  text-decoration: underline !important;
}

a:hover {
  text-decoration: none !important;
}

header a,
.navbar a {
  text-decoration: none !important;
}
