
#bg-image {
    background-image: url("../resources/backgrounds/status-bg.jpg") !important;
}

#onlinestatus {
    font-size: 1.5em;
    color: yellow;
}

.statistic {
    font-size: 1.5em;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 2px 2px 2px black;
}

h3.playerlistheader {
    font-size: 3em;
    font-weight: 400;
    position: sticky;
    top: 0;
    z-index: 5;
    background-color: inherit;
    width: max-content;
    margin: 0 auto 10px auto;
    padding: 0 40px 10px 40px;
    box-shadow: 5px 0 5px black, 0 5px 5px black, -5px 0 5px black;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

div.playerblock {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

div.player {
    border: 2px solid black;
    width: 150px;
    padding: 15px;
    margin: 10px;
}

h5.playername {
    font-size: 1em;
    font-weight: 500;
}

img.playerimg {
    width: 75px;
    height: auto;
    filter: drop-shadow(1px 1px 2px black) drop-shadow(-1px -1px 2px black) drop-shadow(1px -1px 2px black) drop-shadow(-1px 1px 2px black);
}

div.senior img.playerimg {
    filter: drop-shadow(1px 1px 2px #edcd55) drop-shadow(-1px -1px 2px #edcd55) drop-shadow(1px -1px 2px #edcd55) drop-shadow(-1px 1px 2px #edcd55);
}

div.junior img.playerimg {
    filter: drop-shadow(1px 1px 2px #4b93d5) drop-shadow(-1px -1px 2px #4b93d5) drop-shadow(1px -1px 2px #4b93d5) drop-shadow(-1px 1px 2px #4b93d5);
}

@media only screen and (max-width: 500px) {

    h3.playerlistheader {
        font-size: 1.5em;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    div.player {
        width: 100px;
    }

    img.playerimg {
        width: 50px;
    }

}