@font-face {
    font-family: "XTypewriter";
    src: url("XTypewriter_Regular.ttf") format("truetype");
}
* {
  font-family: 'XTypewriter';
}

A:link { color: #FFFFFF; text-decoration: underline; cursor: url("/images/grey_core_cursor.png"), auto; }
A:visited { color: #FFFFFF; text-decoration: underline; cursor: url("/images/grey_core_cursor.png"), auto; }
A:hover { color: #D0D0D0; text-decoration: none; cursor: url("/images/grey_core_cursor.png"), auto; } 

.thebigbanner {
  background: rgba(0, 0, 0, 70%);
  width:1080px;
  height:180px;
  border: 1px dotted #FFFFFF;
}

.marquee {
  background: rgba(0, 0, 0, 70%);
  border: 1px dotted #FFFFFF;
  color:#FFFFFF;
  width:950px;
}

.posts {
  color:#FFFFFF;
  width:950px;
}

.c1kicon {
  height: 200px;
  width: 200px;
  border: 1px dotted #FFFFFF;
}

.pagedoll {
  position: fixed;
  height: 200px;
  width: 200px;
  bottom: 100px;
  right: 100px;
}

html {
    cursor: url("/images/core_cursor.png"), auto;
}

h1 {
  padding:5px;
  color:#FFFFFF;
}
p {
  font-size:13px;
  color:#FFFFFF;
  padding-right: 20px;
  padding-left: 20px;
  font-family: "Courier New", monospace;
}
li {
  font-size:13px;
  padding-right: 20px;
  padding-left: 20px;
}
body 
{
background-color: #000000;
background-image: url(/images/tg_bg_dark.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center; 
background-size: cover;
scrollbar-face-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-shadow-color: #000000;
scrollbar-darkshadow-color: #545454;
scrollbar-3d-lightcolor: #545454;
scrollbar-arrow-color: #ffffff;
scrollbar-track-color: #545454;
}

.gallery { /* this is the main div that wraps your gallery */
  display:flex;
  flex-wrap:wrap;
  width:1000px; /* this can be modified to make the gallery wider */
  justify-content: center;
}

.gallery img {
  width:200px; /* this sets the width for every image */
  height:150px; /* this sets the height for every image. Try setting it to 'auto' and see how it looks weird since every image has a slightly different height? */
  object-fit:cover; /* this crops the image so they are all the same size. This might be an issue if you have landscape AND portrait images. Feel free to take this property out temporarily to see exactly what it does! */
  
}

/* this is the div which CROPS every image */
.gallery > div {
  width:200px; /* this should match the image height */
  height:150px; /* this should match the image width */
  margin-right:10px; /* this controls the gaps between the images */
  margin-bottom:10px; /* this controls the gaps between the images */
}

/* this resizes the image on hover. note that objects in 'portrait'  */
.gallery img:hover {
  transform:scale(2.5); /* this scales up the image when you hover over it */
  object-fit:contain; /* this keeps the aspect ratio of the original images*/
}


.tables
{ border: 1px dotted #FFFFFF; background-color:#000000; color:#FFFFFF} 
.menus
{ width: 150px; border: 0px dotted #FFFFFF; background-color: #313131; color:#FFFFFF;} 
.menulinks
{ text-align: center; line-height: 1.8; }
.content
{ border: 1px dotted #575757; background: rgba(0, 0, 0, 70%); color:#FFFFFF;} 
.disclaimer
{ border: 1px dotted #252525; background: rgba(0, 0, 0, 70%); color:#FFFFFF;} 
