html, body {
  margin: 0;
  background: #00030f;
  color: #fff;
  box-sizing: border-box;
  font-family: arial;
  font-size: 18px;
  padding-top: 32px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.topBar {
  background: linear-gradient(135deg, #16a34a, #15803d);
  padding: 4px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.backToBorealis {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.backToBorealis:hover {
  opacity: 0.8;
  text-decoration: underline;
}

header {
  background-color: #000;
  height: 75px;
}

.headerNav {
  float: right;
  width: 30vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: inherit;
}

a {
  color: #fff;
}

footer {
  border-top: 10px solid;
  border-image: linear-gradient(to bottom, #00030f, #000 1%);
  border-image-slice: 1;
  background: #000;
}

.footerNav {
  display: flex;
  justify-content: space-around;
}

.center {
  display: flex;
  justify-content: space-around;
}

.headerLogo {
  height: 70px;
}

.homeImage {
  background: linear-gradient(to bottom, #000, transparent 40%, #00030f 99%),url(homeImage.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

.homeArticle {
  margin: 0 20px;
}

.rightText {
  float: right;
  width: calc(100% - 370px);
  margin: 0 0 0 10px;
  font-size: 20px;
}

.leftText {
  float: left;
  width: calc(100% - 370px);
  margin: 0 10px 0 0;
  font-size: 20px;
}

.landingImage {
  width: 350px;
}

.callToAction {
  text-align: center;
}

.faqImages {
  width: 40%;
  margin: 20px;
}

.clickable {
  cursor: pointer;
}

summary {
  font-weight: bold;
}

input:focus {
  outline: none;
  border-bottom: 2px solid #25cc00;
}

input, select {
  border: none;
  border-bottom: 2px solid #2364aa;
  font-size: 16px;
  background: transparent;
  color: #fff;
  margin: 2px 0 0 0;
}
