@font-face {
  font-family: "Omori Normal";
  src: url(/fonts/omori_game2-webfont.woff) format("woff");
  src: url(/fonts/omori_game2-webfont.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Omori Horror";
  src: url(/fonts/omori_game-webfont.woff) format("woff");
  src: url(/fonts/omori_game-webfont.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

#site-banner {
  image-rendering: pixelated;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /*margin: 32px;*/
}

#header-name {
  max-width: 100%;
  max-height: 100%;
}

.main {
	max-width: 400px;
  margin: 32px auto;
  /*margin-top: 32px;
  margin-bottom: 32px;*/
  /*width: 50%;
  margin: 8px auto;*/
  border: 4px solid white;
  color: #FFFFFF;
  padding: 16px;
  padding-left: 48px;
}

html {
  height: 100%;  
}

body {
  background: black;
  font-family: "Omori Normal";
  font-size: 32px;
  overflow-y: scroll;
  
  /*height: 800%;*/
  margin: 0;
  position: relative;
  
  scrollbar-color: white black;
  scrollbar-width: thin;
}

header {
  margin-top: 32px;
  margin-bottom: 16px;
  display: flex;
}

ul {
  margin: 0;  
  /*font-size: 24px;*/
}

#rouxls {
    position: fixed;
    left: 0;
    bottom: 0;
}

.choose {
    text-align: center;
    color: white;
    font-size: 1.5em;
}

.locked {
    font-style: italic;
    opacity: 0.8;
}

.fight-link.unlocked:hover::before {
  content:"";
  background-image: url(https://lilithdev.neocities.org/headspace/sprites/cursor.png);
  width: 30px;
  height: 15px;
  background-size: 30px, 15px;
  display: inline-block;

  animation-name: cursor-bounce;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
  transform: translate(-40px, 12px);
}

@keyframes cursor-bounce {
  0% {transform: translate(-40px, 12px);}
  50% {transform: translate(-34px, 12px);}
  100% {transform: translate(-40px, 12px)}
}

.fight-name {
  display: inline;
  opacity: 0.65;
}

.unlocked .fight-name {
  opacity: 1;
  cursor: pointer;
}

.fight-tip {
  opacity: 0.65;
  font-size: 0.8em;
  display: inline;
}

.unlocked .fight-tip {
  display: none;
}