body{
    background-color: #19191B;
    /* background-color: #acacac; */
    color:gray;
    cursor: default;
    font-family: Orbitron,Arial,Helvetica,sans-serif;
    font-size: 35px;
    margin-left: 8px;
    /* hide scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
body::-webkit-scrollbar {
    display: none;
  }

h1 {
  text-align: center;
}
h2 {
    color: rgb(145, 145, 145);
}
h3 {
  text-align: center;
}
p {
    color: rgb(145, 145, 145);
}

.title h1{
    text-align: center;
    color: #fff;
}
.title h2{
  text-align: left;
  color: #fff;
}

footer{
    font-size: 15px;
    position: fixed;
    right: 20px;
    bottom: 5px;
}

.topnav {
    margin: 0px;
    background-color: #333;
    overflow: hidden;
    position: fixed;
    width: 99%;
    margin-right: 15px;
    top: 0px;
    z-index: 1000;
  }
  .anchor {
    display: inline-block;
    padding-top: 10px;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add an active class to highlight the current page */
  .topnav a.active {
    background-color: #ff0000;
    color: white;
  }
  .topnav a.fs {
      float: right;
      display: none;
  }
  .topnav a.ch {
    float: right;
    display: none;
  }
  .topnav a.contact {
    float: right;
  }
  .topnav .join {
    float: left;
    margin: 0px 20px 0px 20px;
    background-color: #ff0000;
    color: black;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }

a:link {
	/*background-color:#ffff00;*/
	color:#ff0000;
	text-decoration:none;
	font-weight:bold;
}
a:hover {
	/* background-color:#000000; */
	cursor:pointer;
	/*cursor:progress;*/
}
a:visited {
	color:#ff0000;
}
a:active {
	cursor:crosshair;
	color:#ffffff;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-device-width : 640px) {
    body{
        background-color: black;
    }
    .topnav a{
        padding: 14px 16px;
        font-size: 150%;
    }
    .topnav a:nth-child(n+4) {display: none !important;}
    .topnav a.icon {
      float: right;
      display: block;
    }
    .topnav .join {
      display: none;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-device-width : 640px) {
    .body {
      margin: 0px !important;
    }
    .topnav.responsive {
        position: absolute;
        top: 0;
    }
    .topnav.responsive a.icon {
      color: black;
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
  /* hide Fileserver */
  /* .topnav.responsive a:nth-child(5) {display:none;} */