@import url('/static/style/inc/scrollbar.css');
@import url('/static/style/inc/header.css');
@import url('/static/style/inc/footer.css');

html, body {
    padding: 0;
    margin: 0;
    background-color: #16181C;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.Scores {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.Scores .Title {
    margin-top: 100px;
    margin-bottom: 0;
    color: #FFF;
}

.Scores  .Text {
    color: #FFF;
}

.Scores .List {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Scores .List li {
    list-style: none;
}

.Scores .List li:first-child {
    transform: scale(1.1);
}

.Scores .List li:nth-child(2), .Scores .List li:nth-child(3) {
    transform: scale(1.05);
}

.Scores .Player {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 10px;
    width: 500px;
    border-radius: 16px;
    background-color: #26292F;
    box-shadow: #26292F 0px 0px 10px 1px;
}

.Scores .Player .Head {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 10px;
}

.Scores .Player .Container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60px;
    width: 100%;
}

.Scores .Player .Container .InLine {
    display: flex;
    align-items: center;
}

.Scores .Player .Container .InLine .Name {
    margin: 0 5px 0 0;
    font-size: 1em
}

.Scores .Player .Container .InLine .Rank {
    font-size: 0.8em;
    font-style: normal;
    color: #9198A8;
}

.Scores .Player .Container .Bar {
    height: 10px;
    border-radius: 5px;
    background-color: #17B85A;
    box-shadow: #17B85A 0px 0px 5px 1px;
}

.Scores .Player .Kills {
    font-size: 2em;
    font-weight: 500;
    font-style: normal;
    margin: 0 10px;
}