body {
  overflow: scroll;
  background-image: url("sheepiepics/bg.png");
  font-family: 'Courier', serif;
  padding-right: 10vw;
}

.menu{
  display: flex;
  flex-direction: row;
  max-height: 100%;
}

.glitchimg{
  max-height: 90%;
  max-width: 90%;
  transform: rotate(-3deg);
  padding-left: 3vw;
  border: 5px #ff0097;
  border-style: none double none double;
}

.blinks{
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.menu-box{
  justify-content: flex-end;
  color: rgb(255, 0, 151);
  overflow: scroll;
  background-color: #000;
  max-width: 100%;
  transform: rotate(4deg);
}

.mainstuff {
  display: flex;
  overflow: clip;
  flex-direction: row;
  max-width: 100%;
}


.maintext {
  max-height: 100%;
  background-color: #000;
  border: 5px #ff0097;
  border-style: none double none double;
  color: #ff0097;
  overflow: scroll;
  transform: rotate(1deg);
  padding-left: 1vw;
  padding-right: 1vw;
}


/* misc rotation values */
.rot1:hover {
  transform: rotate(179deg)
}

.rot2:hover {
  transform: rotate(175deg)
}
.rot3:hover {
  transform: rotate(-175deg)
}

.rot4:hover {
  transform: rotate(-1deg)
}

.rot5:hover {
  transform: rotate(2deg)
}


/* heres the css for the marquee i stole from sadgirl */
.container {
  overflow: hidden;
  white-space: nowrap;
}

.scrolling {
  animation: marquee 2s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(-100%);
  }
  to { 
    transform: translateX(0);
  }
}
/* marquee code ends here */

hr { 
  height: 1px; 
  background-color: #ff0097; 
  border: none; 
}

li a {
  display:inline-block;
  margin:10px;
  color: #ff0097;
}

li a:hover {
  background-image: url("sheepiepics/sheepwalk.gif");
  background-repeat: no-repeat;
  background-position: left;
}

/* this is the grosest, most broken section of my css 
that's somehow carried over across all versions of my website. 
its the overlay. its broken cause i stole it from w3schools and i hardly know what it does
and w3schools is gonna teach you some ROUGH LOOKIN code */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #4b4744;
  opacity: 95%;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  z-index: 1000;
}

.overlay-content {
  background-color: #7e7d79;
  max-width: 360px;
  opacity: 100%;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
}


#ok-button {
  cursor: pointer;
}

/*Stolen from http://aleclownes.com/2017/02/01/crt-display.html*/

@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.67807;
  }
  40% {
    opacity: 0.26559;
  }
  45% {
    opacity: 0.84693;
  }
  50% {
    opacity: 0.96019;
  }
  55% {
    opacity: 0.08594;
  }
  60% {
    opacity: 0.20313;
  }
  65% {
    opacity: 0.71988;
  }
  70% {
    opacity: 0.53455;
  }
  75% {
    opacity: 0.37288;
  }
  80% {
    opacity: 0.71428;
  }
  85% {
    opacity: 0.70419;
  }
  90% {
    opacity: 0.7003;
  }
  95% {
    opacity: 0.36108;
  }
  100% {
    opacity: 0.24387;
  }
}

}
.crt::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}
.crt::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
.crt {
  animation: textShadow 1.6s infinite;
}
