@font-face {
  font-family: "Underdog";
  src: url("/assets/fonts/Underdog/Underdog-Regular.ttf");
  font-style: 400;
  font-style: normal;
  font-display: swap;
}
body{
  margin: 0px;
  background-color: #000000;
}
a{
  color: #40D1CD;
  text-decoration: none;
}
.header-inner, .footer-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.header-inner{
  background: radial-gradient(ellipse farthest-side at top center, #15434B, #00000000);
}
.brand-logo-left, .brand-logo-right {
  width: 80px;
  height: 80px;
  opacity: 0.48;
}
.main-nav {
  font-family: "Underdog";
  font-size: 24px;
}
.main-nav, .footer-nav{
  display: flex;
  gap: 24px;
}
.nav-item {
  position: relative;
}
.nav-button {
  font: inherit;
  color: #40D1CD;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-button.is-open, .nav-button:hover, a:hover{
  color: #50CA7F;
}
.nav-button:focus-visible {
  outline: none;
  color: #50CA7F;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: #50CA7F;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  border-radius: 8px;
  padding-left: 8px;
  white-space: nowrap;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  font-size: 16px;
  background: linear-gradient(to right, #15434B, #00000000 25%);
}
.dropdown.is-open {
  display: flex;
}
.site-main, .footer-brand, .footer-brand-responsive, .copyright{
  color: #FDEEA9;
}
.footer-brand, .copyright{
  text-align: center;
}
.footer-brand-responsive{
  display: none;
}
.footer-inner{
  background: radial-gradient(ellipse farthest-side at bottom center, #15434B, #00000000);
}
