@font-face {
    font-family: "Source Sans Pro";
    src: url('style/SourceSansPro-Regular.otf');
    font-display: block;
  }

  html,
  body {
    margin: 0px;
    padding: 0px;
    background-image: url("img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
  }

  body {
    color: #ffffff;
    font-family: "Source Sans Pro";
    text-shadow: 1px 1px black;
  }

  h1,
  h2,
  h3 {
    margin: 0px;
    font-weight: 100;
  }

  h1 {
    font-size: 54pt;

  }

  h2 {
    font-size: 22pt;
  }

  h3 {
    font-size: 18pt;
  }

  .menubar>div>a {
    font-weight: bold;
    padding: 5px;
    display: block;
    height: 2em;
    font-size: 13pt;
  }

  .l {
    float: left;
    margin-right: 15px;
  }

  .r {
    float: right;
    margin-left: 15px;
  }

  div.menubar {
    background-color: #000000;
    height: 2em;
  }

  div.content {}

  div.content>div {
    margin: 75px 0px 0px;
    background-color: #00000080;
    text-align: center;
  }

  div.title {
    padding: 25px;
  }

  div.title>div {
    display: flex;
  }

  div.title>div>div {
    width: 100px;
    flex-grow: 1;
  }

  h1.title {
    letter-spacing: 0.1em;
    text-shadow: 3px 1px black;
    color: #1a9dff;
  }

  div.top_news {
    padding: 20px;
    opacity: 1.0;
  }

  div.top_news>div {
    text-align: left;
  }

  div.top_news>div>p {
    margin: 7px 0px;
  }

  div.w950 {
    width: 950px;
    margin: auto;
  }

  div.server_showcase {
    display: flex;
    align-items: stretch;
    min-width: 200px;
    padding: 0px;
  }

  div.server_showcase>div {
    width: 100px;
    height: 200px;
    flex-grow: 1;
    background-size: cover;
    position: relative;
  }

  div.server_showcase>div>div {
    background-color: #0000008c;
    width: 100%;
    height: 100%;
  }

  div.server_showcase>div>div>h1 {
    margin: 0px;
    font-size: 36pt;
    padding: 50px 0px 10px;
  }

  div.server_showcase>div>a {
    display: block;
    position: absolute;
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
  }

  div.server_showcase>div>a.connect {
    background-color: #00ff00;
    top: 0px;
    left: 0px;
    color: #ffffff;
  }

  div.server_showcase>div>a.connect:hover {
    background-color: #009900;
  }

  div.server_showcase>div>a.vote {
    background-color: #ff9933;
    top: 0px;
    right: 0px;
    color: #ffffff;
  }

  div.server_showcase>div>a.vote:hover {
    background-color: #cc6633;
  }

  a {
    text-decoration: none;
    color: #ffffff;
  }

/* Navbar container */
 .navbar {
   overflow: hidden;
   background-color: #333;
   font-family: Arial;
 }
 
 /* Links inside the navbar */
 .navbar a {
   font-weight: bold;
   padding: 5px;
   display: block;
   height: 2em;
   font-size: 13pt;
 }
 
 /* The dropdown container */
 .dropdown {
   float: left;
   overflow: hidden;
 }
 
 /* Dropdown button */
 .dropdown .dropbtn {
   font-weight: bold;
   font-size: 13pt;
   border: none;
   outline: none;
   color: white;
   padding: 5px;
   background-color: inherit;
   font-family: inherit; /* Important for vertical align on mobile phones */
   margin: 0; /* Important for vertical align on mobile phones */
 }
 
 
 /* Add a red background color to navbar links on hover */
 .navbar a:hover, .dropdown:hover .dropbtn {
   background-color: red;
 }
 
 /* Dropdown content (hidden by default) */
 .dropdown-content {
   display: none;
   position: absolute;
   background-color: #f9f9f9;
   text-shadow: 0px 0px black;
   min-width: 160px;
   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
   z-index: 1;
 }
 
 /* Links inside the dropdown */
 .dropdown-content a {
   float: none;
   color: black;
   padding: 12px 16px;
   text-decoration: none;
   display: block;
   text-align: left;
 }
 
 /* Add a grey background color to dropdown links on hover */
 .dropdown-content a:hover {
   background-color: #ddd;
 }
 
 /* Show the dropdown menu on hover */
 .dropdown:hover .dropdown-content {
   display: block;
 } 
  
	