/*
fonts
*/
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/outfit-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/outfit-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*
actual css
*/
/* for some reason i cant put it in the class argh */
a{text-decoration:none;}
li{list-style:none;display:inline-block;}
ul{padding:0;margin:0;}

/* normal happy land */
html, body {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  background-color: #2f513f;
}
::selection {
  background-color: #00ff9971;
}
::-moz-selection {
  background-color: #00ff9971;
}
::-ms-selection {
  background-color: #00ff9971;
}
::-webkit-selection {
  background-color: #00ff9971;
}
p {
  margin: 0;
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: white;
}
.pagetitle {
  margin: 0;
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: white;
}
a {
  color: #81e7bb;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 10%;
  margin-right: 10%;
}
.navbar {
  width: 100%;
  height: 3.5rem;
  background-color: #23392dbb;
  z-index: 50;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.logo-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 0;
}
.logo-image {
  aspect-ratio: 1 / 1;
  height: 2.5rem;
  margin: .5rem;
}
.logo-text {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  white-space: nowrap;
}
.navitem, .navitem-menu {
  margin-right: 1rem;
}
.navlink, .navlink-menu {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: .2rem;
}
.navmenu-container {
  display: none;
}
/* mobile navigation */
@media (max-width: 42.5rem) {
  .navmenu-container {
    display: block;
    cursor: pointer;
  }

  .navlist-container {
    display: block;
    max-height: 0;
    overflow: hidden;
    position: fixed;
    z-index: 50;
    top: 4rem;
    right: .5rem;
    width: fit-content;
    height: fit-content;
    padding: .5rem; /* each option is 2rem tall */
    padding-bottom: 0;
    border-radius: 1rem;
    background-color: #274032;
    transform: translateY(-1rem);
    opacity: 0;
    transition: max-height 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  }

  .navlist-container#maximized-menu {
    max-height: 8rem;
    transform: translateY(0);
    opacity: 1;
  }

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

  .navitem {
    margin-bottom: .5rem;
    margin-right: 0;
  }
}

@media (max-width: 21.75rem) {
  .logo-text {
    display: none;
  }
}


/* anim on hover */
.logo-image, .logo-text, .navitem, .navitem-menu {
  transition: transform 0.2s ease;
}
.logo-image:hover, .logo-text:hover, .navitem:hover, .navitem-menu:hover {
  transform: rotate(3deg) scale(1.2);
}