html {
    overflow-x: hidden;
}

body {
    overflow: hidden;
    color: #FFF;
    font-family: "Open Sans", sans-serif;
    position: relative;
    margin: 0;
}

.body-bg {
    z-index: -1;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse farthest-corner at center top, #D9ED92 0%, #184E77 100%);
}

nav {
    overflow: hidden;
    background: linear-gradient(to right, #3A404D, #181C26);
}

nav a {
    float: right;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 17px;
}

nav a:hover {
    background-color: #99D98C;
    color: #000;
}

nav a.active {
    background-color: #99D98C;
    color: #181C26;
}

.title {
    text-align: center;
    color: #184E77;
    text-shadow: 2px 2px #96A464;
}

.leaderboard {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 285px;
    background: linear-gradient(to bottom, #3A404D, #181C26);
    border-radius: 10px;
    box-shadow: 0 7px 30px rgba(62, 9, 11, 0.3);
}

.leaderboard h1 {
    font-size: 18px;
    color: #E1E1E1;
    padding: 15px 20px 18px;
    margin-bottom: 0px;

    span {
        text-align: center;
    }
}

.leaderboard h1 svg {
    width: 25px;
    height: 26px;
    position: relative;
    top: 3px;
    margin-right: 6px;
    vertical-align: baseline;
}

.leaderboard ol {
    counter-reset: leaderboard;
    padding: 0;
    margin-top: 0;
    list-style: none;
}

.leaderboard ol li {
    position: relative;
    z-index: 1;
    font-size: 14px;
    counter-increment: leaderboard;
    padding: 18px 10px 18px 50px;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1, 1);
}

.leaderboard ol li::before {
    content: counter(leaderboard);
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #C24448;
    background: #FFF;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0px 0px 3px rgba(62, 9, 11, 0.5);
}

.leaderboard ol li mark {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 18px 10px 18px 50px;
    margin: 0;
    background: none;
    color: #FFF;
}

.leaderboard ol li strong {
    position: relative;
    z-index: 2;
    display: block;
    text-align: right;
}

.leaderboard li:nth-child(1)::before {
    color: #FFF;
    background: #C24448;
}

.leaderboard ol li:nth-child(1) {
    background: #D9ED92;
    color: #184E77;
}

.leaderboard ol li:nth-child(1) mark {
    color: #184E77;
}

.leaderboard ol li:nth-child(2)::before {
    color: #FFF;
    background: #C24448;
}

.leaderboard ol li:nth-child(2) {
    background: #B5E48C;
    color: #184E77;
}

.leaderboard ol li:nth-child(2) mark {
    color: #184E77;
}

.leaderboard ol li:nth-child(3)::before {
    color: #FFF;
    background: #C24448;
}


.leaderboard ol li:nth-child(3) {
    background: #99D98C;
    color: #184E77;
}

.leaderboard ol li:nth-child(3) mark {
    color: #184E77;
}

.leaderboard ol li:nth-child(4) {
    background: #76C893;
}

.leaderboard ol li:nth-child(5) {
    background: #52B69A;
}

.leaderboard ol li:nth-child(6) {
    background: #34A0A4;
}

.leaderboard ol li:nth-child(7) {
    background: #168AAD;
}

.leaderboard ol li:nth-child(8) {
    background: #1A759F;
}

.leaderboard ol li:nth-child(9) {
    background: #1E6091;
}

.leaderboard ol li:nth-child(10) {
    background: #184E77;
}

.leaderboard ol li:last-child {
    border-radius: 0 0 10px 10px;
}

.the-most {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 50vw;
    max-width: 200px;
    padding: 10px;
}

.the-most img {
    max-width: 100%;
}

.ribbon {
    background-color: #a00;
    overflow: hidden;
    white-space: nowrap;
    /* top left corner */
    position: absolute;
    width: 25rem;
    left: -7.5rem;
    top: 3.2rem;
    /* for 45 deg rotation */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /* for creating shadow */
    -webkit-box-shadow: 0 0 10px #888;
    -moz-box-shadow: 0 0 10px #888;
    box-shadow: 0 0 10px #888;
    z-index: 1;
}

.ribbon span {
    border: 1px solid #faa;
    color: #fff;
    display: block;
    font: bold 100% 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 1px 0;
    padding: 10px 50px;
    text-align: center;
    text-decoration: none;
    /* for creating shadow */
    text-shadow: 0 0 5px #444;
}