* {
  padding: 0;
  margin: 0;
  font-family: Helvetica, serif;
}

a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  color: #29bae6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  margin-top: 50px;
}
@media screen and (max-width: 799px) {
  header {
    max-width: 320px;
  }
}
header .menu {
  letter-spacing: 0.2rem;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 799px) {
  header .menu {
    min-width: unset;
    max-width: 320px;
  }
}
header .menuLogo img {
  max-width: 200px;
}
@media screen and (max-width: 1023px) {
  header .menuLogo img {
    max-width: 100px;
  }
}
header .menuLinks {
  position: relative;
  margin-top: 15px;
}
@media screen and (max-width: 799px) {
  header .menuLinks:before {
    width: 0 !important;
  }
  header .menuLinks:after {
    width: 0 !important;
  }
}
header .menuLinks:before {
  content: "";
  position: absolute;
  display: block;
  width: 150px;
  height: 1px;
  background: white;
  right: 105%;
  top: 50%;
}
header .menuLinks:after {
  content: "";
  position: absolute;
  display: block;
  width: 150px;
  height: 1px;
  background: white;
  left: 105%;
  top: 50%;
}
header .menu a {
  margin: 0 10px;
}

.contentWidth {
  max-width: 1200px;
}
@media screen and (max-width: 1023px) {
  .contentWidth {
    max-width: 800px;
  }
}
@media screen and (max-width: 799px) {
  .contentWidth {
    max-width: 320px;
  }
}

footer {
  width: 100%;
  height: 80px;
  background: #0b0b0b;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footerContent a {
  display: flex;
  align-items: center;
  width: 100%;
  color: white;
}
footer .footerContent a p {
  font-weight: 100;
  font-size: 13px;
  margin-left: 15px;
}
footer .footerContent a img {
  width: 50px;
}

.currentPage {
  color: #29bae6;
}

.highlightedText {
  color: #29bae6;
}

.content {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content h1 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: white;
}
@media screen and (max-width: 1023px) {
  .content h1 {
    font-size: 26px;
  }
}

/*# sourceMappingURL=style.css.map */
