:root {
  /* --bg-color: rgb(0, 120, 200); */
  /* --header-text-color: white; */
  /* --header-color: #880000; */
  /* --bg-color: rgb(0, 100, 180); */
  /* --header-text-color: black; */
  /* --header-text-color: var(--bg-color); */
  /* --header-color: lightblue; */
  --bg-color: rgb(0, 120, 200);
  --header-text-color: white;
  --header-color: #880000;
}

html,
body {
  margin: 0;
  font-family: 'calibri';
 scroll-padding-top: 120px;
}

.name {
  text-transform: uppercase;
  margin: 1pt;
  font-size: 22pt;
}

.name>span {
  /* color: rgb(0, 100, 180); */
  color: var(--header-text-color);
  display: inline-block;
}

.name>span::first-letter {
  font-size: 150%;
}

.nav-bar {
  display: flex;
  padding-top: 1vh;
  justify-content: end;
  width: 100%;
  gap: 0;
  margin-right: 2vw;
}

.top-bar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  /*background-color: #AC2B37;*/
  background-color: var(--header-color);
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.top-bar>img {
  position: absolute;
  left: 10px;
  top: -20px
}

.nav-item {
  display: flex;
  padding: 2px 10px 0px;
  background-color: #880000;
  /* background-color: #000000; */
  /* max-width: 5em; */
  max-width: min-content;
  height: 2em;
  bottom: 0;
  text-align: center;
  align-items: center;

}

.nav-item>a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: small;
  color: black;
  color: white;
}

#wpi {
  filter: invert(1);
}

.header {
  flex-direction: column;
  display: flex;
}

.header-main {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 2em;
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .5em;
  min-width: 40em;
}

.header-info:first-child {
  font-size: 22pt;
}

.color-strip {
  position: absolute;
  background-color: rgb(119, 136, 153);
  width: 100vw;
  height: 100px;
  z-index: -1;
}

.section {
  width: 80%;
  margin: 2vh auto;
  padding: 2em;
  box-shadow: 0 4px 8px 0 #0000004a, 0 6px 20px 0 #00000040;
}

.section-heading {
  width: 100%;
  text-align: center;
}

.header-section {
  width: 80%;
  text-align: center;
  padding: 1em 2em;
  background-color: lightgray;
  box-shadow: 0 4px 8px 0 #0000004a, 0 6px 20px 0 #00000040;
}

.background {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 1em;
  margin: 0;
  background-color: transparent;
}

.section li::marker {
  color: var(--header-color);
}