h1 {
  font-size: 2.5rem;
}






.flexContainer {
  display: flex;
  gap: 1vw;
}

.flexCenter {
  justify-content: center;
  align-items: center;
}

.centerText {
  text-align: center;
}

.column {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.themeDark_Header {
  background-color: navy;
  color: white;
  font-family: Verdana, Arial, sans-serif;
}

.themeDark_Content {
    background-color: cornsilk;
    color: black;
    border-style: solid;
    border-width: 0.2vw;
    border-color: black;
    padding: 1vw;
}

.themeDark_Headerlink {
  color: white;
  text-decoration: none;
}

}
.themeDark_Headerlink:hover {
  color: yellow;
}

.themeDark_Headerlink:active {
  color: orange;
}

.bottomBorder {
  border-bottom-style: solid;
  border-bottom-width: 0.5vw;
  border-bottom-color: black;
}