@charset "UTF-8";
/* pixelify-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Pixelify Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/pixelify-sans-v2-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/fonts/pixelify-sans-v2-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/pixelify-sans-v2-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/fonts/pixelify-sans-v2-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/fonts/pixelify-sans-v2-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/fonts/pixelify-sans-v2-latin-regular.svg#PixelifySans') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Pixel Operator';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/PixelOperator.ttf') format('ttf'),
}
@font-face {
  font-family: 'Pixel Operator Bold';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/Pixel-Operator-Bold.ttf.woff') format('woff');
}
.navbar{
  /** First, the text! **/
  font-family: 'Pixel Operator Bold', 'Pixelify Sans';
  color: white;
  font-size: 30px;
  /** Then the size **/
  width: 1000px;
  height: 35px;
  /** More shit i guess**/
  gap: 15px;
  display: flex;
  justify-content: flex-start;
  margin: auto;
  padding: 10px;
  background: linear-gradient(black,#6495ED00);
  border: solid white 4px;
}

a:link {
  color: yellow;
}

a:visited {
  color: yellow;
}

a:hover {
  color: lightgray;
}

a:active {
  color: ivory;
}

body {
 /** First, the text! **/
 font-family: 'Pixel Operator Bold', 'Pixelify Sans';
 color: white;
 /** Misc/Unsorted display stuff **/
 display: table;
 margin: auto;
 background-color: black;
 background-image: url("/images/battlebg.gif");
 background-repeat: repeat;
}

p{
 font-family: 'Pixel Operator Bold', 'Pixelify Sans';
 color: white;
 background-color:black;
 padding: 10px;
 border: solid white 4px;
 max-width: 1000px;
 font-size: 20px;
}

h1 {
  color:ivory;
  text-align: center;
}

h2 {
  color:ivory;
  text-align: center;
}

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}