body {
  margin: 0;
  overflow-x: hidden;
}

.headdrop {
  width: 100%;
  height: 100vh;
  background-color: #002b36;
  color: #eee8d5;
  overflow: hidden;
  display: flex;
  flex-flow: column;
}

.nav {
  display: flex;
  align-items: center;
  z-index: 999;
}
.nav a {
  display: flex;
  height: 100%;
  font-size: 1.2em;
  padding: 0 0.5em;
  flex-flow: row;
  align-items: center;
}
.nav a:link {
  color: #eee8d5;
  text-decoration: none;
}
.nav a:visited {
  color: #eee8d5;
  text-decoration: none;
}
.nav a:hover {
  background-color: #586e75;
}

@media screen and (max-width: 767px) {
  .nav {
    flex-flow: column;
  }
}
@media screen and (min-width: 768px) {
  .nav {
    flex-flow: row;
  }
}
h1 {
  margin: 16px 32px;
  font-size: 1.5em;
}

.content {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
}

.box {
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .box {
    padding: 1em 2em;
  }
}
@media screen and (max-width: 769px) {
  .box {
    padding: 12px 8px;
  }
}
.beeg-text {
  font-size: 3em;
  font-weight: 700;
  font-family: "JetBrains Mono", "Consolas", "Courier New", "Microsoft YaHei", "WenQuanYi Zen Hei", Courier, monospace;
}

p {
  margin: 0;
}

@keyframes blink {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0%;
  }
}
@keyframes hint {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
.cursor {
  animation: 0.6s cubic-bezier(1, 0, 0, 1) 0s infinite alternate blink;
}

.hint {
  color: #eee8d5;
}

.hint-in {
  animation: 0.3s linear 0s hint;
}

.hint-out {
  opacity: 0;
}

.hintbox {
  display: inline-block;
  background-color: #586e75;
  margin: 0.5em;
  padding: 0 1em;
}

.candywrap {
  width: 100%;
  min-height: 100vh;
  background-color: #002b36;
  color: #eee8d5;
  overflow: hidden;
  display: flex;
  flex-flow: column;
}

.flex {
  display: flex;
}

.blocks {
  display: flex;
  flex: row;
  align-items: stretch;
}

.block {
  display: flex;
  flex-flow: column;
  flex-grow: 3;
  align-items: center;
}

.padder {
  flex-grow: 1;
}

.shifter {
  display: flex;
  flex-flow: row-reverse;
}

.footer {
  font-size: 0.8em;
  color: #eee8d5;
  display: flex;
  padding: 1.2em;
  z-index: 999;
}
.footer a:link {
  color: #eee8d5;
}
.footer a:visited {
  color: #eee8d5;
}
.footer a {
  margin-right: 1em;
}

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