:root {
    --text: white;
    --bg: black;

    --dark-color: black;
    --bright-color: white;
    --friend-color: #00ffff;
    --obesk-color: #ff00ff;
    --neutral-color: #ffff00;
    --bastard-color: #ff0066;

    --baseTransform: translateX(0);
}

@media only screen and (max-width: 1026px) {
    #splash pre {
        display: none;
    }
}

/* confession: most of these styling elements are direct modifications of observer sheets
TECHNICALLY the site doesn't have a LICENSE file so it's fine... */
#cenu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 1vmin;
    left: 1vmin;
    z-index: 9999;
}

/* img placeholder, plan to make something less Oblong later */
#cenu-icon {
    background-image: url(../img/crack.png);
    width: 50px;
    height: 50px;
    cursor: pointer;
    animation: SPIN 1s linear infinite;
    animation-play-state: paused;
    border-radius: 100%;
    border: 1px dotted var(--friend-color);
    opacity: 50%;
    transition: 0.5s;
}

#cenu:hover #cenu-icon {
	animation-play-state: running;
    opacity: 1;
}

body {   
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Space Mono', monospace;
  overflow: hidden;
}

body:not(#splash):not(.mothcontainer){
  padding-left:6px
}

.mothcontainer {
  max-width: 80vh;
  width:500px;
  color: var(--friend-color);
  border: 1px solid #00ffff;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.mothcontainer .moth {
  display: flex;
  flex-direction: row;
  background: var(--bg);
  padding: 10px;
  font-size: 10px;
}

.mothcontainer img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(/img/mothman.gif), linear-gradient(to bottom, rgba(255, 255, 255, 0.71), var(--friend-color));
  background-size: 165%, auto; 
  background-position: center top; 
  margin-right: 0.5rem; 
  width: 3.5rem; 
  height: 3.5rem; 
  border: 1px solid #00ffff;
}

.mothcontainer .texts {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%
}

.mothcontainer .texts .barcode {
  font-family: 'Libre Barcode 128 Text';
  color: inherit;
  margin: 0 -0.5rem 0.3rem;
  padding-left: 10px;
  border-bottom: 1px solid #00ffff;
  font-size: 2.7em;
  text-transform: uppercase;
}

.mothcontainer .texts .barcode .penis {
  max-height: 1.35rem !important;
  padding-top: 10px
}

.mothcontainer .texts .barcode .penis span {
  line-height: 0;
  vertical-align: 0.65rem;
}

.selectmenu {
    align-items: center;
    justify-content: center;
    border: 1px dotted white;
    padding: 1rem;
    padding-top: 0;
}

/* okay now this is LITERALLY just the observer button style. soz */
.button {
    display: inline-block;
    text-align: center;
    font-family: 'Libre Barcode 128 Text';
    font-size: 2em;
    color: var(--neutral-color);
    width: auto;
    padding: 0.25em;
    border: 1px solid;
    cursor: pointer;
}

#splash {
  color: var(--friend-color);
  top: 0;
  left: 0;
  width: 100vw;
  height: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#content {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

@keyframes SPIN {
    0% { transform: var(--baseTransform) rotate(0deg) }
    100% { transform: var(--baseTransform) rotate(360deg) }
}