

body {
  background: url(https://twilight.blue/tunez/diner.gif) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.content {
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  margin: 40px auto;
  background: rgba(0,0,0, 0);
  width: 90%;
  max-width: 90%;
  border-radius: 5px;
  padding-bottom: 12px;
}

hr {
  border: 1px solid white;
}

h1, h1 a {
  min-height: 40px;
  width: 90%;
  max-width: 800px;
  text-align: center; 
  vertical-align: middle;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  color: #fff;
  padding: 20px 0px 0px 0px;
}

h2, h2 a {
  min-height: 40px;
  width: 90%;
  max-width: 800px;
  text-align: center; 
  vertical-align: middle;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  color: #fff;
  padding: 20px 0px 0px 0px;
}

h3, h3 a {
  min-height: 40px;
  width: 90%;
  max-width: 800px;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  color: #fff;
  padding: 20px 0px 0px 0px;
}

p {
  width: 90%;
  max-width: 1200px;
  text-align: left;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  margin: 0 auto;
  padding-bottom: 10px;
}

 /* unvisited link */
a:link {
    color: #fff;
}

/* visited link */
a:visited {
    color: #fff;
}

/* mouse over link */
a:hover {
    color: #99FF99;
}

/* selected link */
a:active {
    color: #fff;
}



table.paleBlueRows {
  table-layout: fixed;
  width: 100%;
  font-family: 'Noto Sans SC', sans-serif;
  border: 1px solid #66DDDD;
  background-color: #000;
  text-align: left;
  border-collapse: separate;
  width: 100%;
}
table.paleBlueRows td, table.paleBlueRows th {
  border: 2px solid #66DDDD;
  padding: 2px 2px;
}
table.paleBlueRows tbody td {
  font-size: 16px;
  color: #fff;
  margin: 6px;
  padding: 10px;
 
}
table.paleBlueRows tfoot td {
  font-size: 16px;
}

table.darkTable3 {
  font-family: 'Catamaran' , Serif;
  table-layout: fixed;
  width: 100%;
  height: 300px;
  text-align: left;
  border-collapse: separate;
}
table.darkTable3 td, table.darkTable3 th {
  padding: 20px 3px;
}
table.darkTable3 tbody td {
  font-size: 20px;
  background: rgba(0,0,0,0.7);
  padding: 10px;
}
table.darkTable3 tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.7);
}
table.darkTable3 thead {
  background: rgba(0, 0, 0, 0.7);
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}
table.darkTable3 thead th {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  color: #FFCC33;
  text-align: left;
  height: 30px;
  padding: 20px;
}
table.darkTable3 tfoot td {
  font-size: 12px;
}

/* Button CSS */

.button-64 {
  align-items: center;
  background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width:100%;
  min-width: 300px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button-64:active,
.button-64:hover {
  outline: 0;
}

.button-64 span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

.button-64:hover span {
  background: none;
}

@media (min-width:300px) {
  .button-64 {
    font-size: 24px;
    min-width: 196px;
  }
}
/* Button 2 CSS */


.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
/*----------------------------
         color text
-----------------------------*/


/*----------------------------
    The Footer
-----------------------------*/

.footer-distributed {
  background-color: transparent;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 20px 50px;
}

.footer-distributed .footer-left p {
  color: #66EEEE;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: " ";
  font-size: 20px;
  left: 0;
  color: #6677DD; 
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}


.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 380px;
}

.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #111111;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 900;
  color: #FF2288;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition:all .25s;
}

.footer-distributed .footer-right a:hover{transform:scale(1.1); -webkit-transform:scale(1.1);}

.footer-distributed p.footer-links a:hover{text-decoration:underline;}

/* Media Queries */

@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center;
  }
  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}