*{
    margin: 0;
    padding: 0;
    font-family: "TF2Regular";
    box-sizing: border-box;
}
@font-face {
    font-family: 'TF2Regular'; /*a name to be used later*/
    src: url('/fonts/TF2Regular.ttf'); /*URL to font*/
}
.header{
    height: 100vh;
    width: 100%;
    padding: 0 8%;
    background-image:url(images/header.png);
    position:absolute;
    overflow-y: scroll;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 100px;
}
.nav-links{
    background: #272626;
    color: #272626;
    padding: 8px 30px;
    border-radius: 4px;
    opacity: 0.8;
}
.nav-links li{
    display: inline-block;
    margin: 0 15px;
}
.nav-links li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
    position: relative;
}
.nav-links li a::after{
    content: '';
    background: #ff3d00;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}
.nav-links li a:hover::after{
    width: 100%;
}
.ranks-table{
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
}
.ranks-table thead tr{
    background-color: #8B0000;
    color: #080008;
    text-align: left;
    font-weight: bold;
}
.ranks-table th,
.ranks-table td{
    padding: 12px 15px;
    color: #fff;
}
.ranks-table tbody tr {
    border-bottom:  1px solid #ddd;
}
.ranks-table tbody{
    background-color: #272626;
    opacity: 0.8;
}
.ranks-table tbody tr:last-of-type{
    border-bottom: 2px solid #009879;
}
.footer{
    width: 100vw;
    display: block;
    overflow: hidden;
    padding: 70px 0;
    box-sizing: border-box;
    background: #18181a;
}
.inner_footer{
    display: block;
    margin: 0 auto;
    width: 1100px;
    height: 100%;
}
