/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
    font-family: Canterbury;
    src: url(./Canterbury.ttf);
}

@font-face {
  font-family: Century1;
  src: url(./CenturyModern.ttf);
}

body {
  font-family: Century1;
  background-color: black;
  color:#898888;
  cursor: url(https://cur.cursors-4u.net/games/gam-10/gam929.ani), url(https://cur.cursors-4u.net/games/gam-10/gam929.png), auto !important;
}

.enter-container {
  font-family: Canterbury;
  text-align: center;
  position: absolute;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  font-family: Canterbury;
  font-size: 69px;
  margin: 8px 0;
}

a {
 color:#ab0000;
}

a:hover {
  color: #600202;
}

.cats {
  width: 85%;
}

.twocats {
  width: 80px;
}

.frame {
  width: 90px;
  margin-left: 10px;
}

.svgLink {
  fill: #ab0000;
}

.svgLink:hover {
  fill: #cc0404 !important;
}

.container {
  max-width: 1028px;
  margin: 0 auto;
}

.content {
  flex: 1;
  padding: 20px;
  margin-left: 180px;
}

.main {
  display: flex;
  flex-direction: row;
}

.sidebar {
  width: 180px;
  padding: 0px;
  position: fixed;
  top: 80px;
  background-color: black;
}

.bottom-banner {
  margin: 120px 0 10px 0;
}

#menuClose {
  display: none;
}

.menu   {
    width: 20px;
    position: absolute;
    display: none;
    z-index: 10;
}

@media screen and (max-width: 480px) {
    .menu   {
      display: block;
    }
    
    #sidebar {
      width: 0;
      display: none;
   }
   
   .content {
    margin-left: 0 !important; 
   }
}

@media screen and (min-width: 480px) {
    
    #sidebar {
      display: block !important;
    }
}

nav ul {
  margin: 0;
  margin-top: 0px;
  margin-top: 2px;
  padding: 0;
}

nav ul li {
  list-style-type: none;
}

li a {
  font-family: Canterbury;
  font-size: 24px;
  text-decoration: none;
  text-shadow: 1px -1px 0px rgba(255,255,255,0.3);
  letter-spacing: 1px;
  color: #ab0000;
  display: block;
  padding: 10px 20px;
  transition: text-indent ease 0.2s;
}

.centered {
  display: block;
  margin: auto;
}

.flex  {
  display: flex;
}