@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Quicksand', sans-serif;
    padding: 0;
    margin: 0;
    user-select: none;
}

body {
    color: #f6f6f6;
    background: #131316;
    margin: 1rem 1.5rem 0 1.5rem;
}

div {
    background: #18181b;
    border-radius: 3px;
    border: 1px solid #333333;
    padding: 0.5rem 0;
}

p {
    background: #131316;
    width: 95%;
    border: 1px solid #333333;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 auto 0.5rem auto;
    text-align: center;
    border-radius: 4px;
    text-transform: uppercase;
}

p span {
    color: #2274ca;
}

table {
    width: 90%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0.2em;
}

tr {
    height: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #131316;
    font-size: 1rem;
    margin-right: 0.5rem;
    text-align: center;
}

tr:first-child {
    color: #2274ca;
    font-weight: 700;
    padding: 0;
    margin: 0 0 0.5rem 0;
    list-style: none;
}

td {
    text-align: center;
    border-radius: 3px;
    background: #131316;
    font-size: 0.75rem;
    border: 1px solid #333333;
    font-weight: 500;
}

/* Medals icons */
tr:first-child td:nth-child(2) {
    background-image: url(http://fastdl.cs-nabombie.pl/icons/user.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

tr:first-child td:nth-child(3) {
    background-image: url(http://fastdl.cs-nabombie.pl/icons/gold_medal.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

tr:first-child td:nth-child(4) {
    background-image: url(http://fastdl.cs-nabombie.pl/icons/silver_medal.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

tr:first-child td:nth-child(5) {
    background-image: url(http://fastdl.cs-nabombie.pl/icons/brown_medal.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

tr:first-child td:nth-child(6) {
    background-image: url(http://fastdl.cs-nabombie.pl/icons/medal.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

/* Medals column widths */
td:nth-child(1) {
    width: 8%;
}

td:nth-child(2) {
    width: 40%;
}

td:nth-child(3),
td:nth-child(4),
td:nth-child(5),
td:nth-child(6) {
    width: 13%;
}

@media screen and (max-width: 600px) {
    tr:first-child td:nth-child(2),
    tr:first-child td:nth-child(3),
    tr:first-child td:nth-child(4),
    tr:first-child td:nth-child(5),
    tr:first-child td:nth-child(6) {
        background-size: 15px;
    }

    tr {
        height: 20px;
    }

    td {
        font-size: 0.4rem;
    }

    p {
        font-size: 0.5rem;
    }

    table {
        border-spacing: 0.1em;
    }
}