@font-face {
  font-family: "Unscii";
  src: url("unscii-16-fix.woff2");
}

html,
body {
  font-family: Unscii, monospace;
  font-size: 16px;
  background: #000;
  color: red;
  padding: 0;
  line-height: 16px;
}

pre {
  font-family: Unscii, monospace;
  margin: 0;
}

@keyframes swim {
  0% {
  }
  50% {
    translate: 0 0.5em;
  }
  100% {
    translate: 0 0;
  }
}

@keyframes bubble {
  0% {
    translate: 0 1em;
  }
  100% {
    translate: 0 -2em;
  }
}

@keyframes froth {
  0% {
    content: "╒\a🮕🮕\a░🮕";
  }
  50% {
    content: "╒\a🮖🮖\a🮖░";
  }
}

a:visited {
  color: #7572bb;
}
a:link {
  color: #f31dac;
}

.vb {
  width: 0.5em;
  word-break: break-all;
}

.swimmer {
  animation: swim 3s infinite ease-in-out;
}

.name {
  display: flex;
  margin: auto;
  justify-content: center;
}

.bowl {
  position: relative;
  padding-top: 1em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: last baseline;
  background: blue;
  width: 600px;
  margin: auto;
  border-bottom: 1em solid white;
  border-left: 0.5em solid white;
  border-right: 0.5rem solid white;
}

.threespan {
  grid-column: 1 / span 3;
}

.base {
  background: #000;
  border-top: white 1em solid;
}

.rightalign {
  justify-self: flex-end;
}

.white {
  color: white;
}

.blub {
  color: aqua;
  animation: bubble 3s steps(3) infinite;
}

.content {
  color: #5efcd4;
  margin: auto;
  width: 600px;
}

.cat {
  margin: auto;
  width: calc(600px + 2em);
  letter-spacing: -2px;
  color: gray;
}

.gravel {
  grid-column: 1 / 4;
  height: 1em;
  background: repeating-linear-gradient(
    90deg,
    rgba(43, 72, 132, 1) 0em,
    rgba(43, 72, 132, 1) 0.5em,
    rgba(162, 227, 255, 1) 0.5em,
    rgba(162, 227, 255, 1) 1em,
    rgba(105, 152, 198, 1) 1em,
    rgba(105, 152, 198, 1) 1.5em
  );
}

.castle {
  color: gray;
}

.plant {
  color: green;
}

.filter {
  color: #555555;
  position: absolute;
  right: -3em;
  top: -1.5em;
}

.froth::after {
  position: absolute;
  animation: froth 3s linear infinite;
  content: "╒\a🮕🮕\a░🮕";
  color: #00aaaa;
  width: 1em;
  height: 2em;
  top: -1em;
  right: 0.5em;
}
