 /*cursor shit*/
 
html, * {
   cursor: url('/images/normal.cur'), auto;
}

a, a:hover {
  cursor: url('/images/link.gif'), auto;
}

p, span, h1, h2, h3, h4, h5, h6, pre, s, del, li {
  cursor: url('/images/text.gif'), auto;
}
   
/*font shit*/

@font-face {
    font-family: 'cherish';
    src: url('/fonts/cherish-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

/* this is called a CSS reset, it removes default styles from your page */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 17px;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

/*meat and potatoes*/

body {
	background-color: #9d6771;
	font-family: 'cherish';
	color: #823042;
	background-image: url('/images/sakurabg.gif');
	background-size: cover;
	height: 100%;
	font-size: 17px;
	line-height: 20px;
	text-align: center;
}

#everything {
	background-image: url('/images/layout.gif');
	background-repeat: no-repeat;
	height: 751px;
	width: 931px;	
	min-width: 931px;
	margin-top: 100px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

#header {
	height: 105px;
	width: 931px;	
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	position: relative;
}

#headermarquee {
	height: 36px;
	width: 560px;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	left: 173px;
	top: 52px;
}

#headermarquee marquee {
	margin-top: 7px;
}

#main {
	height: 646px;
	width: 931px;	
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: 168px 561px 168px;
	grid-template-rows: 563px 533px 563px;
	grid-column-gap: 7px;
	grid-row-gap: 0px;
	display: grid;
	text-align: center;
}

#left {
	text-align: center;
	position: relative;
	height: 214px;
}

#right {
	text-align: center;
	height: 214px;
}

#middle {
	height: 100%;
	text-align: center;
}

#lefttop {
	height: 202px;
	width: 163px;
	position: absolute;
	top: 0;
	left: 0;
}

#leftbottom {
	height: 333px;
	width: 163px;
	position: absolute;
	margin-top: 229px;
	left: 0;
	
}

body::before {
          content: "";
          display: block;
          position: fixed;
          left: 0;
          top: 0;
          width: calc(100% + 32px);
          height: calc(100% + 32px);
          background-image: url(/images/computeroverlay.png);
          background-position-x: 0px;
          background-position-y: 0px;
          background-repeat: repeat;
          background-repeat-x: repeat;
          background-repeat-y: repeat;
          z-index: 10000000;
          animation: ScanlineAnimationLeft 2s linear infinite;
          animation-name: ScanlineAnimationLeft;
          animation-duration: 2s;
          animation-timing-function: linear;
          animation-iteration-count: infinite;
          pointer-events: none;
          opacity: 1;
      }
	  
	  @keyframes ScanlineAnimationRight {
  	  0% {transform: translateX(0px) translateY(0px);}100% {transform: translateX(32px) translateY(-32px);}
  	  }
      @keyframes ScanlineAnimationLeft {
  	  0% {transform: translateX(0px) translateY(0px);}100% {transform: translateX(-32px) translateY(-32px);}
  	  }
	  
/* Scrollbar Styling */

::-webkit-scrollbar{
	width:0px;
}

/*for some kind of blinking animation */

.blink_me {
	animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
	}
	
/*audio*/

.audio {
	position: fixed;
	top: 0;
	right: 0;
}

audio {
	width: 100px;
	height: 15px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-panel {
  background-color: #b0838b;
  color: #8b384b;
}

/*iframe styling*/

iframe {
	width: 535px;
	height: 525px;
	padding: 10px;
}

/*misc styles*/

a {
	color:#d9a5b3;
	font-weight:normal;
}

a:hover {
 color: #d9a5b3;
 font-weight: normal;
 text-decoration: none;
 font-style: italic;
}

a:link, a:visited, a:active {
  text-decoration: none; 
  color: #d9a5b3;
}

::selection {
  background: rgba(255,255,255,0);
  color: #e6e4ce;
}


ul {
    list-style-type: none;
}

/* clock stuff */

#clock {
	font-size: 23px;
	color: #823042;
	background-image: url('/images/clockbg.png');
	background-repeat: no-repeat;
	display: flex;
	height: 40px;
	width: 100px;
	margin: auto;
	padding: 8px;
	position: relative;
}

#hours {
    order: 0;
    position: absolute;
    top: 12px;
    left: 7px;
}

#minutes {
    order: 1;
    position: absolute;
    top: 12px;
    left: 40px;
}

#seconds {
    order: 2;
    position: absolute;
    top: 12px;
    left: 73px;
}