* {
  box-sizing: border-box;
}
@font-face{
  font-family: DejavuCustom;
  src: url("/fonts/DejaVuSans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: DejavuCustom, Roboto, sans-serif;
  font-style: normal;
  font-size: 20px;
  margin: 0;
  background: #f4f7fb;
  color: #253238;
}

header {
  color: #fff; /* change color of text */
  padding: 0px 0px 20px 0px; /* first number is distance of text from top */
  margin: 0;
  text-align: center;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 20px;
}

section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

section h1{
  color: #013145;
  font-size: 1.5rem;
  margin: 0;
}

.homeH1{
  color: #013145;
  font-size: 1.5rem;
  padding-bottom: 5px;
}

.aboutH1{
  color: #013145;
  font-size: 1.5rem;
  padding-bottom: 10px;
  margin: 20px;
}

section h2 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #013145;
}

footer {
  padding: 10px;
  text-align: center;
  background: #e8edf4;
  font-size: 0.9rem;
}

section{
  overflow: hidden;
}

.sectionBody{
  display: flex;
  gap: 20px;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}


.rightHalf{
  width: 40%;
}

.rightHalf img{
  width:100%;
  height: auto;
  display: block;
}

.leftHalf{
  width:50%;
}

.leftHalf img{
  width:100%;
  height:auto;
  display:block;
}

ul.headerList {
  width: 100%;
  list-style-type: none;
  font-size: 20px;
  margin: 0;
  padding: 0;          /* small padding so edge items aren't flush */
  background-color: #013145;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
}

ul.headerList li {
  float: left;
  border-right: 1px solid #bbbbbb;
}

ul.headerList li a {
  display: block;
  color: #FFFFFF;
  padding: 10px 30px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

ul.headerList li a:hover {
  background-color: #cd102e;
}

ul.headerList li a.active {
  background-color: #9b0a33;
}

