@font-face {
  font-family: Hangul;
  src: url(/assets/fonts/vtf_hngl-webfont.woff);
}
@font-face {
  font-family: Madou;
  src: url(/assets/fonts/MadouFutoMaruGothic.woff);
}
* {
  box-sizing: border-box;
}

html {
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  height: 100%;
  padding: 0;
  margin: 0;
  background: black;
}

nav {
  background: black;
  padding: 0px 8px;
  height: 40px;
  font: 32pt Hangul;
  line-height: 0.5;
  display: flex;
  overflow-x: auto;
  perspective: 3cm;
  perspective-origin: left center;
}

nav a,
nav span {
  --color: white;
  text-decoration: none;
  color: var(--color);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

nav span {
  padding: 0;
  font-size: 32px;
}

nav a:nth-child(1) {
  --color: red;
}
nav a:nth-child(2) {
  --color: orange;
}
nav a:nth-child(3) {
  --color: yellow;
}
nav a:nth-child(4) {
  --color: lime;
}
nav a:nth-child(5) {
  --color: turquoise;
}
nav a:hover {
  background-color: var(--color);
  color: black;
}

main {
  color: #888;
  font-family: "MS PGothic", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  max-width: 80ch;
  margin: auto;
}

main h1 {
  font-family: Madou;
  background-color: black;
  font-size: 32px;
  overflow: hidden;
  color: white;
  text-align: center;
}

main h2 {
  font-family: Madou;
  background-color: black;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: -1px 0 white;
  overflow: hidden;
}

main h2:before {
  content: "* ";
}

main img {
  max-width: 100%;
}

footer {
  color: #666;
  font-family: "MS Gothic", "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 9pt;
  text-align: center;
  max-width: 80ch;
  margin: auto;
  padding: 2em 0;
}

.box {
  padding: 16px;
  margin: 16px;
  border: 4px solid rgb(57, 28, 0);
  border-radius: 16px;
}

.box .title {
  font-family: Madou;
  background-color: black;
  font-size: 20px;
  filter: brightness(0.75) contrast(1000);
  overflow: hidden;
  color: white;
}

.box .title a {
  color: white;
  text-decoration: none;
}

.box .title a:hover {
  text-decoration: underline;
}

table {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
}

th,
td {
  padding: 0.6em;
  border: 1px solid #333;
}

.greentd {
  border: 1px solid rgb(161, 232, 21);
  background-color: rgb(75, 105, 9);
  z-index: 100;
  position: relative;
  color: black;
  font-weight: bold;
}

.yellowtd {
  border: 1px solid rgb(232, 214, 21);
  background-color: rgb(105, 87, 9);
  z-index: 100;
  position: relative;
  color: black;
  font-weight: bold;
}

/*# sourceMappingURL=style.css.map */