/* CSS reset */

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: 100%;
	font: inherit;
	vertical-align: baseline;
}

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

/* font shit */

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

@font-face {
    font-family: 'pixelflag';
    src: url('/fonts/pixelflag.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

/* cursor shit */

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

body, html {
   cursor: url('/images/cur.png'), auto;
}

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


/* the The main stuff */

body {
    animation-name: attract;
    animation-iteration-count: infinite;
    animation-duration: 11s;
    animation-timing-function: linear;
    background-image: url('/images/bgs/gunbg.png');
	font-family: 'gamer';
	color: #3c2b1b;
	font-size: 23px;
	line-height: 30px;
	text-align: center;
	margin:0 auto;
	overflow-x: hidden;
}

#everything {
	grid-template-columns: 19% 54% 27%;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	min-width:900px;
	display: grid;
	margin: 30px auto;
	width:75%;
}

#main {
	padding-right:5px;
	padding-left:5px;
	padding-bottom:6px;
	height: -moz-fit-content;
	height: -webkit-fit-content;
	height: -fit-content
}
#main1 {
	background-color: #847c7c;
	border:1px black solid;
	padding: 20px 30px;
}

#left {
	text-align:center;
	padding: 5px 5px;
	border: 15px solid transparent;
	border-image-source: url(/images/index/bulletborder.png);
	border-image-repeat: round;
	background-color: #847c7c;
	border-image-slice: 30;
	height: -moz-fit-content;
	height: -webkit-fit-content;
	height: -fit-content
}

#right {
	text-align:center;
	padding: 5px 5px;
	border: 15px solid transparent;
	border-image-source: url(/images/index/bulletborder.png);
	border-image-repeat: round;
	background-color: #847c7c;
	border-image-slice: 30;
	height: -moz-fit-content;
	height: -webkit-fit-content;
	height: -fit-content
}

#banner {
	width: 60%;
	height: auto;
	margin: 5px auto;
}

/* navbar styles */

#left ul {
	list-style-type: none;
	text-align: left;
}

#left hr {
	border: 1px solid #3c2b1b;
}

#left h3 {
	font-family: 'pixelflag'; 
	margin: auto;
}

#left a:hover {
	font-style: italic; 
}

.sublist {
	text-indent: 40px;
	font-size: 80%;
}
/* columns */

.flex {
	display: flex;
}

.half {
	width: 45%;
	margin: 0px auto;
	order: 1;
}

.third {
	width: 30%;
	margin: 0px auto;
	order: 1;
}

/* animations */

img:hover#shake {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

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

@keyframes blinker {
	50% { opacity: 0; }
}

#flip {
	animation: flip 3s infinite linear;
}

@keyframes flip {
	0% {
		transform: rotateY(180deg);
	}
	
	50% {
		transform: rotateY(-180deg);
	}
	
	100% {
		transform: rotateY(180deg);
	}
}

#logo {
  animation: tilt 1s infinite linear;
  font-size: 200%;
}

#logo1 {
  animation: pulse 1s infinite linear;
}

@keyframes tilt {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

@keyframes pulse {
  0% {
	transform: scale(0.95);
  }
  50% {
	transform: scale(1);
  }
  100% {
	transform: scale(0.95);
  }
}

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);}
  	  }

@keyframes attract {
0% {
    background-color: #aeaaa6;
    background-position: 0px 510px;
}
100% {
    background-color: #aeaaa6;
    background-position: 910px 0px;
}
}

/*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: #aeaaa6;
  color: #3c2b1b;
}

/*scrollbar*/


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

::-webkit-scrollbar-thumb {
	background: #3c2b1b;
}

::-webkit-scrollbar-track {
	background-color: #aeaaa6;
}

/* misc styles */

h1 {
	font-size: 160%;
}

h2 {
	font-size: 150%;
}

h3 {
	font-size: 140%;
}

h4 {
	font-size: 130%;
}

h6 {
	font-size: 120%;
}

h6 {
	font-size: 110%;
}

a.buttons, a:hover.buttons, a:link.buttons, a:visited.buttons, a:active.buttons {
	color: #3c3b3a;
	text-shadow: -2px 2px #b7a99a;
	font-size: 200%;
}

#hitcount {
	font-family: stars;
}

.stars {
	font-family: stars;
}

.flag { 
	font-family: 'pixelflag';
}

.center {
	margin-left: auto;
	margin-right: auto;
}

.tiny {
	font-size: 70%;
}

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

a:hover {
 color: #b5b4ae;
 font-weight: normal;
 text-decoration: none;
}

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

::selection {
  background: #acaba4;
  color: #3c2b1b;
}

#msg {
	width: 60%;
	overflow-x: hidden;
	margin: 0px auto;
}

hr {
	border: .5px solid #3c2b1b;
}

/* All stuff below here is for viewing your site on different devices */

@media screen and (max-width: 1536px) {
	body { zoom: 80%; }
}

@media screen and (max-width: 1440px) {
	body { zoom: 75%; }
}

@media screen and (max-width: 1366px) {
	body { zoom: 70%; }
}

@media screen and (max-width: 1280px) {
	body { zoom: 65%; }
}

@media screen and (max-width: 1024px) {
	body { zoom: 60%; }
}

@media screen and (max-width: 992px) {
	body { zoom: 55%; }
}

@media screen and (max-width: 800px) {
	body { zoom: 50%; }
}

@media screen and (max-width: 600px) {
	body { zoom: 45%; }
}