@font-face {
font-family: "comicoro";
src: url("Comicoro.ttf");
}

@keyframes floaty {
  from {transform: translate(0, 3px)}
  to {transform: translate(0, -3px)}
}

@keyframes spinny {
  from {transform: rotate(0deg)}
  to {transform: rotate(360deg)}
}

@keyframes scroll {
  from {background-position:0 0}
  to {background-position: 64px 64px}
}

body {
  background-color: #fcf;
  background-image: url(tile.png);
  color: #f29;
  font-family: comicoro;
  font-size: 12pt;
  line-height:100%;
  animation: scroll 8s linear infinite;
  padding: 0;
  margin: 0;
}

a {
  color: #c6f;
}

img {
  max-width: 100%;
}

h1, h2, h3 {
  font-size: 18pt;
  margin: 0;
}

#name {
  text-align: center;
  font-size: 36pt;
  padding: 18pt;
  text-shadow: 1.5pt 1.5pt #ff339955;
  animation-name: floaty;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

#box {
  border: 1px solid;
  background: linear-gradient(#ffc, #fdc);
  width: 800px;
  height: 600px;
  position: static;
  overflow: auto;
  border-radius: 3px;
  box-shadow: 5px 5px #ff339988;
}

#boxbox {
  width: 802px;
  height: 602px;
  margin: auto;
  position: relative;
}

#sidebar {
  border: 1px solid;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 150px;
  height: 200px;
  padding: 5px;
  background-color: #fff;
  border-radius: 3px;
}

#sidebarstuff {
  background-color: #fff;
  height: 100vh;
  width: 150px;
  
}

.infobox {
  border: 1px solid;
  background-color: #fff;
  margin-left: 200px;
  margin-top: 20px;
  position: static;
  padding: 5px;
  width: 500px;
  border-radius: 3px;
}

.spiral1 {
  position: absolute;
  top: -10px;
  left: -10px;
}

.spiral2 {
  position: absolute;
  top: -10px;
  right: -10px;
}

.spiral3 {
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.spiral4 {
  position: absolute;
  bottom: -10px;
  left: -10px;
}

.spin {
  animation: spinny 3s infinite linear;
}

#journal {
  height: 300px;
}