@charset "UTF-8";

/*
 * Properties are organised alphabetically, in this order.
 * Layout -> Box Model (Outside -> Inside) -> Visuals -> Typography -> Misc.
 */

@font-face {
  font-family: "IBM Plex Sans";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
  src:
    local("IBM Plex Sans"),
    url("assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-display: swap;
  font-style: normal;
  font-weight: bold;
  src:
    local("IBM Plex Sans Bold"),
    url("assets/fonts/IBMPlexSans-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-display: swap;
  font-style: italic;
  font-weight: normal;
  src:
    local("IBM Plex Sans Italic"),
    url("assets/fonts/IBMPlexSans-Italic.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-display: swap;
  font-style: italic;
  font-weight: bold;
  src:
    local("IBM Plex Sans BoldItalic"),
    url("assets/fonts/IBMPlexSans-BoldItalic.woff2") format("woff2");
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0.012rem;
  line-height: 1.0;
  word-spacing: 0.024rem;
}

body {
  background-color: oklch(25.00% 0.0 0.0);

  color: oklch(100.00% 0.00 0.00);
}

nav {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;

  min-height: 3.0rem;
  width: 33.33%;

  margin: 2.0rem auto;

  transition: width 1.0s ease-in-out;
}

.nav-link {
  box-shadow: 
    inset 0 0 0.50rem oklch(50.00% 0.00 0.00),
    0 0 1.0rem 0.25rem oklch(12.50% 0.00 0.00);
  
  overflow: hidden;

  border-radius: 1.0rem;

  margin: 0 auto;

  padding: 1rem;

  background-color: oklch(0.00% 0.00 0.00);

  text-align: center;

  font-size: 1.5rem;

  transition:
    box-shadow 0.50s ease-in-out,
    background-color 0.50s ease-in-out,
    color 0.50s ease-in-out;
}

.nav-link:hover {
  box-shadow: 
    inset 0 0 0.50rem oklch(0.00% 0.00 0.00);
}

.nav-link-accessible {
  border-radius: 0.5rem;

  margin: 0 auto;

  padding: 0.25rem 0.25rem;

  font-weight: bold;

  transition:
    background-color 0.50s ease-in-out,
    color 0.50s ease-in-out;
}

.nav-link-accessible:hover {
  transition:
    background-color 0.50s ease-in-out 0.25s,
    color 0.50s ease-in-out 0.25s;
}

.container {
  min-height: 1.0rem;
  width: 33.33%;

  box-shadow: 
    inset 0 0 0.50rem oklch(50.00% 0.00 0.00),
    0 0 1.0rem 0.25rem oklch(12.50% 0.00 0.00);

  overflow: hidden;
  
  border-radius: 1.0rem;

  margin: 2.0rem auto;
  
  padding: 1.5rem;

  background-color: oklch(0.00% 0.00 0.00);

  transition: width 1.0s ease-in-out;
}

@media (max-width: 1280px) {
  nav, .container {
    width: calc(100% - 2.25rem);
  }
}

a {
  color: oklch(81.18% 0.0912 6.32);

  text-decoration: none;
}

a:not(.nav-link):not(.nav-link-accessible) {
  font-weight: bold;

  transition:
    border-radius 0.0s 0.50s ease-in-out,
    padding 0.25s 0.50s ease-in-out,
    background-color 0.50s ease-in-out,
    color 0.50s ease-in-out;
}

a:hover {
  background-color: oklch(81.18% 0.0912 6.32);

  color: oklch(0.00% 0.00 0.00);
}

a:hover:not(.nav-link):not(.nav-link-accessible) {
  border-radius: 0.5rem;

  padding: 0 0.25rem;
  
  transition:
    padding 0.25s ease-in-out 0.25s,
    background-color 0.50s ease-in-out 0.50s,
    color 0.50s ease-in-out 0.50s;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.0;
}

h1 {
  font-size: 2.00rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.50rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.00rem;
}

h6 {
  font-size: 0.75rem;
}

hr {
  margin: 1.0rem 0;

  color: oklch(50.00% 0 0);
}

p {
  line-height: 1.5;
}

p.member {
  padding-left: 1.0rem;
}

p.member-description {
  padding-left: 2.0rem;
}

p.disclaimer {
  font-size: 0.85rem;
  line-height: 1.0;
}

main {

}

footer {
  text-align: center;
}

footer > p {
  line-height: 1.0;
}
