* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    color-scheme: dark;
}

body {
    position: relative;
    overflow-x: hidden;
    height: 100%;
    background-color: #fca1ff;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

a:link,
a:visited,
a:active,
a:focus {
    color: #33ff33;
    text-decoration: none;
}
a:hover {
    text-shadow: 0 0 1px #33ff33, 0 0 2px #33ff33;
}


#bg_anim {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#bg_anim canvas {
  width: 100vw;
  height: 100dvh;
  display: block;
}

#content {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  color: #ffffff;
}

.head {
    font-family: 'Prompt-Light', sans-serif;
    font-size: clamp(2rem, 4vw, 6rem);
    text-align: center;
    padding-top: 1rem;
    color: #000000;
}

.desc {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 2vw, 3rem);
    text-align: center;
    color: #000000;
}

.main {
    height: 95%;
    min-height: 95%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
/* Fonts */

@font-face {
    font-family: 'Prompt';
    font-weight: 300;
    font-style: normal;
    src: url('Prompt-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Prompt-Light';
    font-weight: 100;
    font-style: normal;
    src: url('Prompt-Light.woff2') format('woff2');
}


/* Main */

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #33ff33;
    font-family: '3270', monospace;
    font-size: clamp(0.25rem, 1.6vw, 2rem);
    line-height: 0.8;
    white-space: pre;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-shadow: 0 0 1px #33ff33, 0 0 2px #33ff33;
}

.logo:link,
.logo:visited,
.logo:active,
.logo:focus {
    color: #33ff33;
    text-decoration: none;
}
.logo:hover {
    text-shadow: 0 0 1px #33ff33, 0 0 2px #33ff33;
}

/* Everything under logo */

.threeup {
    display: grid;
    grid-template-columns: 20% 60% 20%;
}

/* Right & Left */

.sidebar {
    border: 0px;
}

/* Left */

.nav-box {
    width: 70%;
    margin-left: 5%;
    padding: 0.5rem;
    font-family: '3270', monospace;
    font-size: clamp(0.8rem, 1.8vw, 1.2rem);
    color: #33ff33;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(33, 255, 51, 0.5);
}
.about:link,
.about:visited,
.about:active,
.about:focus {
    color: #33ff33;
    text-decoration: none;
}
.about:hover {
    text-shadow: 0 0 1px #33ff33, 0 0 2px #33ff33;
}

/* Middle */

.card-holder {
    color: #33ff33;
    text-decoration: none;
    text-align: center;
}

.card {
    width: 100%;
    font-family: '3270', monospace;
    font-size: clamp(0.8rem, 2vw, 1.4rem);
    padding: 2px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #33ff33;
}

.card:link,
.card:visited,
.card:active,
.card:focus {
    display: block;
    color: #33ff33;
    text-decoration: none;
}

.card:hover {
    text-shadow: 0 0 1px #33ff33, 0 0 2px #33ff33;
}

.card-table,
.card-table td,
.card-table tr {
    height: 1.7rem;
    border: 1px solid #33ff33;
    border-collapse: collapse;
}

.card-table {
    width: 100%;
    padding: 0.01rem;
}

