:root {
  --foreground: rgb(195, 237, 248);
  --accent: rgb(58, 167, 218);
  --link: rgb(141, 232, 255);
  --header: rgb(34, 40, 63);
  --body: rgb(36, 53, 100);
  --body-light: rgb(53, 76, 139);
  --button: rgb(54, 65, 110);
  --wailord_image: url(../assets/pictures/wailord_hg_ss.png);
  --border-rad-block: 20px;
}

@font-face {
  font-family: "Unifraktur-Cook";
  src: url(../assets/fonts/UnifrakturCook/UnifrakturCook-Bold.ttf);
}
@font-face {
  font-family: "Unifraktur-Magtunia";
  src: url(../assets/fonts/UnifrakturMaguntia/UnifrakturMaguntia-Regular.ttf);
}
@font-face {
  font-family: "Germania-One";
  src: url(../assets/fonts/Germania_One/GermaniaOne-Regular.ttf);
}
@font-face {
  font-family: "Pirata-One";
  src: url(../assets/fonts/Pirata_One/PirataOne-Regular.ttf);
}
@font-face {
  font-family: "Grenze-Gotisch";
  src: url(../assets/fonts/Grenze_Gotisch/GrenzeGotisch-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Roboto-Slab";
  src: url(../assets/fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Nunito";
  src: url(../assets/fonts/Nunito/Nunito-VariableFont_wght.ttf);
}
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  background-color: var(--body);
  font-size: 16pt;
  font-family: "Nunito";
  color: var(--foreground);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
}

img {
  image-rendering: pixelated;
}

footer {
  margin-bottom: 30px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--header);
  width: 100%;
  position: sticky;
  top: 0;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
}
nav a,
nav .expanding-link {
  position: relative;
  height: 70px;
  min-height: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  flex-basis: 0;
  flex-grow: 1;
  font-weight: bold;
  font-size: 20pt;
}
nav a:before,
nav .expanding-link:before {
  background-color: var(--header);
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
nav a:hover,
nav .expanding-link:hover {
  cursor: pointer;
}
nav a:hover:before,
nav .expanding-link:hover:before {
  filter: brightness(150%);
}
nav a {
  justify-content: center;
}

.selected:before {
  filter: brightness(140%);
}
.selected .expanding-link-title:before {
  filter: brightness(140%);
}

a,
.expanding-link {
  color: var(--link);
  text-decoration: none;
}
a:visited,
.expanding-link:visited {
  color: var(--link);
}

.expanding-link {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expanding-link-title {
  min-height: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.expanding-link-content {
  transition: opacity 0.15s;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}
.expanding-link-content a {
  width: 100%;
  height: 70px;
}

.arrow-icon {
  width: 25px;
  margin-left: 30px;
}

@media screen and (max-width: 600px) {
  nav a,
  nav .expanding-link {
    position: relative;
    font-size: 16pt;
  }
  nav a .expanding-link-content,
  nav .expanding-link .expanding-link-content {
    width: 100vw;
    position: absolute; /* take out of normal flow */
    bottom: 100%; /* place above the title */
    left: 50%;
    transform: translateX(-50%);
  }
  header {
    top: auto;
    position: fixed;
    bottom: 0;
  }
  footer {
    margin-bottom: 100px;
  }
  .arrow-icon {
    width: 15px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 450px) {
  nav a,
  nav .expanding-link {
    font-size: 14pt;
  }
  .arrow-icon {
    margin-left: 10px;
  }
}/*# sourceMappingURL=globals.css.map */