html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: left;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

html {
  height: 100%;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media screen and (min-width: 900px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1500px) {
  html {
    font-size: 1.2vw;
  }
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

code,
pre {
  font-family: Courier, "Courier New", monospace;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
}

body {
  font-family: Geometric, "Spoqa Han Sans Neo";
  font-size: 1rem;
  line-height: 1.5;
  word-break: keep-all;
  color: black;
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.nav,
.random {
  position: absolute;
  z-index: 999;
  top: 0;
  right: calc(-50% + 1rem);
  width: 50%;
  padding-top: 50%;
  overflow: hidden;
  line-height: 1.25;
  text-transform: uppercase;
  color: transparent;
  background-color: black;
  border-radius: 50%;
  box-shadow: 0 .5rem 1rem -1rem black;
  transition: right .5s, color 1s, border-radius .5s;
}

@media screen and (min-width: 900px) {
  .nav,
  .random {
    right: 0;
    width: calc(100% / 3);
    padding-top: calc(100% / 3);
    font-size: 1.5rem;
  }
}

#home .nav,
#home .random {
  right: 0;
}

.nav:hover {
  right: 0;
  color: white;
  border-radius: 0;
}

.nav ul {
  position: absolute;
}

.nav .menu {
  top: 1rem;
  left: 1rem;
}

.nav .enabler {
  display: flex;
  bottom: 1rem;
  right: 1rem;
}

@media screen and (min-width: 900px) {
  .nav .menu {
    top: 1.5rem;
    left: 1.5rem;
  }

  .nav .enabler {
    display: flex;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.nav .enabler li:not(:last-child) {
  margin-right: .5em;
}

.nav .toggle-search.opened {
  color: magenta;
}

.random {
  z-index: 888;
  top: auto;
  bottom: 1rem;
  animation: rotating 10s linear infinite;
}

@media screen and (min-width: 900px) {
  .random {
    bottom: 3rem;
  }
}

.random:hover {
  right: 0;
  color: white;
}

.random img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 200%;
  width: auto;
  max-height: 200%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s;
}

.random:hover img {
  opacity: 1;
}

.random figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  line-height: 1.375;
  text-align: center;
  text-shadow: 0 .05em .5rem black;
  opacity: 0;
  transition: opacity .5s;
}

.random:hover figcaption {
  opacity: 1;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.main {
  position: absolute;
  z-index: 777;
  top: 0;
  right: 0;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  padding-right: 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: black;
  background-color: white;
  box-shadow: inset .5rem -.5rem 1rem -1rem black;
  transition: width .25s, height .25s;
  transition-delay: .125s;
}

@media screen and (min-width: 900px) {
  .main {
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    padding-right: calc(100% / 3);
  }
}

.main::-webkit-scrollbar {
  display: none;
}

.footer {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  flex: 0 0 auto;
  padding: 1rem;
}

@media screen and (min-width: 900px) {
  .footer {
    padding: 1.5rem;
  }
}

.section {
  position: relative;
  padding: 1rem;
}

@media screen and (min-width: 900px) {
  .section {
    padding: 1.5rem;
  }
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  margin-top: -.125rem;
  font-size: 3rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-title:not(:last-child) {
  margin-bottom: 1.5rem;
}

.block:not(:last-child) {
  margin-bottom: 3rem;
}

.list {
  list-style-type: none;
}

.list-item:not(:last-child) {
  border-bottom: 1px solid currentColor;
}

.list-item a {
  display: block;
  padding: .5rem 0;
}

.list-item:first-child a {
  padding-top: 0;
}

.list-item:last-child a {
  padding-bottom: 0;
}

.list-item a > div:last-child {
  text-align: right;
}

@media screen and (min-width: 900px) {
  .list-item a {
    display: flex;
  }

  .list-item a > div {
    flex: 1 1 calc(100% / 3);
  }

  .list-item a > div:first-child {
    flex: 1 1 calc(100% / 1.5);
  }

  .list-item a > div:not(:last-child) {
    padding-right: 3rem;
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post:not(:last-child) {
  margin-bottom: 3rem;
}

.post-header {
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid currentColor;
}

@media screen and (min-width: 900px) {
  .post-header {
    display: flex;
  }

  .post-header > *:last-child {
    flex: 0 0 auto;
  }

  .post-header > *:not(:last-child) {
    flex: 1 1 0;
    padding-right: 1.5rem;
  }
}

.content {
  position: relative;
}

.content:lang(ko) {
  line-height: 1.625;
}

.content:lang(en) {
  line-height: 1.375;
}

.content a {
  border-bottom: 1px solid currentColor;
}

.content h1 {
  font-size: 1.25rem;
  font-weight: bold;
}

.content h1:not(:first-child) {
  margin-top: 2rem;
}

.content h1 + h2 {
  margin-top: -1rem;
}

.content ul,
.content ol {
  margin-left: 2rem;
}

.content ul {
  list-style-type: disc;
}

.content hr {
  height: 1px;
  margin: 2rem 0 !important;
  background-color: currentColor;
  border: 0;
}

.content > *:not(:last-child) {
  margin-bottom: 1rem;
}

.columns {
  margin: -.75rem;
}

.column {
  padding: .75rem;
}

@media screen and (min-width: 1200px) {
  .columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .column {
    flex: 1 1 0;
  }
}

.columns figcaption {
  margin-top: .25rem;
  font-size: .75rem;
}

.columns figcaption .ko {
  line-height: 1.5;
  word-break: keep-all;
}

.image figcaption {
  margin-top: .5em;
  font-size: .875rem;
}

.iframe {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.files {
  display: flex;
  flex-wrap: wrap;
  margin: -.75rem;
}

.files li {
  width: 100%;
  padding: .75rem;
}

@media screen and (min-width: 900px) {
  .files li {
    width: 50%;
  }
}

.files li:not(:last-child) {
  margin-bottom: .5rem;
}

.files a {
  display: block;
  width: 100%;
  padding: 2rem 1rem;
  overflow: hidden;
  text-align: center;
  color: white;
  background-color: black;
  border-radius: 50%;
}

.search {
  display: none;
  position: absolute;
  z-index: 888;
  top: 0;
  right: 0;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  background: rgb(255,255,0);
  background: -moz-radial-gradient(circle, rgba(255,255,0,1) 0%, rgba(255,0,255,1) 100%);
  background: -webkit-radial-gradient(circle, rgba(255,255,0,1) 0%, rgba(255,0,255,1) 100%);
  background: radial-gradient(circle, rgba(255,255,0,1) 0%, rgba(255,0,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffff00",endColorstr="#ff00ff",GradientType=1);
  box-shadow: 0 .5rem 1rem -1rem black;
}

@media screen and (min-width: 900px) {
  .search {
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
  }
}

.search .input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 30vh;
  text-align: center;
  color: magenta;
}

input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-size: inherit;
  color: black;
  background-color: transparent;
  border: 0;
  outline: 0;
}

input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: black;
}
input[type="text"]::-moz-placeholder { /* Firefox 19+ */
  color: black;
}
input[type="text"]:-ms-input-placeholder { /* IE 10+ */
  color: black;
}
input[type="text"]:-moz-placeholder { /* Firefox 18- */
  color: black;
}

.showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: -.5rem;
}

.showcase li {
  width: 100%;
  padding: .5rem;
}

@media screen and (min-width: 600px) {
  .showcase li {
    width: 50%;
  }
}

@media screen and (min-width: 900px) {
  .showcase {
    margin: -.75rem;
  }

  .showcase li {
    width: calc(100% / 3);
    padding: .75rem;
  }
}

.showcase figcaption {
  width: 100%;
  overflow: hidden;
  margin-top: .5rem;
  font-size: .75rem;
}