
h1{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
}

.site-main {
    width: 60%;
    min-width: 600px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 992px) and (min-width: 320px) {
    .site-main {
        min-width: auto;
        width: 100%;
    }
}

.site-logo {
    text-align: center;
    margin: auto;
    padding: 70px 0 40px 0;
}

.post-large{
    max-width: 100%!important;
}



.statistics{
    padding: 30px 0;
}


/*Neon*/
neon {
    text-align: center;
    font-size: 56px;
    margin: 8px 0 8px 0;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
 


neon a {
    font-size: 1em;
    color: var(--neon-a);
    -webkit-animation: neonlight 1s ease-in-out infinite alternate;
    -moz-animation: neonlight 1s ease-in-out infinite alternate;
    animation: neonlight 1s ease-in-out infinite alternate;
}


@-webkit-keyframes neonlight {
    from {
        text-shadow: 0 0 5px var(--neon-general), 0 0 10px var(--neon-general), 0 0 15px var(--neon-general), 0 0 20px var(--neon-color), 0 0 35px var(--neon-color), 0 0 40px var(--neon-color), 0 0 50px var(--neon-color), 0 0 75px var(--neon-color);
    }
    to {
        text-shadow: 0 0 2px var(--neon-general), 0 0 5px var(--neon-general), 0 0 7px var(--neon-general), 0 0 10px var(--neon-color), 0 0 17px var(--neon-color), 0 0 20px var(--neon-color), 0 0 25px var(--neon-color), 0 0 37px var(--neon-color);
    }
}
@-moz-keyframes neonlight {
    from {
        text-shadow: 0 0 5px var(--neon-general), 0 0 10px var(--neon-general), 0 0 15px var(--neon-general), 0 0 20px var(--neon-color), 0 0 35px var(--neon-color), 0 0 40px var(--neon-color), 0 0 50px var(--neon-color), 0 0 75px var(--neon-color);
    }
    to {
        text-shadow: 0 0 2px var(--neon-general), 0 0 5px var(--neon-general), 0 0 7px var(--neon-general), 0 0 10px var(--neon-color), 0 0 17px var(--neon-color), 0 0 20px var(--neon-color), 0 0 25px var(--neon-color), 0 0 37px var(--neon-color);
    }
}
@keyframes neonlight {
    from {
        text-shadow: 0 0 2px var(--neon-general), 0 0 3px var(--neon-general), 0 0 5px var(--neon-general), 0 0 8px var(--neon-color), 0 0 12px var(--neon-color), 0 0 16px var(--neon-color), 0 0 25px var(--neon-color), 0 0 30px var(--neon-color);
    }
    to {
        text-shadow: 0 0 1px var(--neon-general), 0 0 2px var(--neon-general), 0 0 3px var(--neon-general), 0 0 4px var(--neon-color), 0 0 6px var(--neon-color), 0 0 8px var(--neon-color), 0 0 12px var(--neon-color), 0 0 15px var(--neon-color);
    }
}
@media (max-width: 650px) {
  #container {
      width: 100%;
  }
  neon {
      font-size: 3.5em;
  }
}
/*  
.board-table {
    margin: 0;
    background: linear-gradient(45deg, #a4b9ea, #51a0f58a);
    font-family: sans-serif;
    font-weight: 100;
    margin: 20px 0;
}
.board-table table {
    width: 600px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 10px 1px rgba(10, 97, 206, 0.51);
}
.board-table th, .board-table td {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.34);
    color: #fff;
    cursor: pointer;
}
.board-table th {
    font-size: 14px;
    text-align: left;
}
.board-table thead th {
    background-color: #9bc0efdb;
    box-shadow: inset 0px 0px 3px 0px var(--neonlight-color);
}
.board-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
.board-table tbody td {
    font-size: 18px;
    position: relative;
}
.board-table tbody td:hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -9999px;
    bottom: -9999px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}
TABLE */











/* TABLE */
 
table{
    width:100%;
    table-layout: fixed;
}

.tbl-content{
    max-height: 600px;
    overflow-x:auto;
    margin-top: 0px;

}

th{
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

td{
    padding: 15px;
    text-align: left;
    vertical-align:middle;
    font-weight: 300;
    font-size: 18px;
    border-bottom: solid 1px rgba(255,255,255,0.1);
}

tr:nth-child(even) {
    background: rgba(110, 110, 110, 0.03);
} 
