body {
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    text-align: center;
    font-size: 1rem;
    background-image: url('https://cdn.equinox.sh/c1a40211-7f81-463c-8225-d7b38a58b981/yinC3Rnf.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-shadow: -2px 2px 3px rgba(54,54,54,0.8);
    color: #ffffff;
    user-select: none;
}

.center {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title {
    font-size: 5rem;
    font-weight: bold;
    padding-bottom: 0.25rem;
}

.subtitle {
    font-size: 2rem;
    padding-bottom: 3rem;
}

.stats-title {
    text-decoration: underline;
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.25rem;
}

.stats {
    padding-bottom: 1rem;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
}

.stats > div {
    display: flexbox;
    padding: 0.5rem 1rem;
    border: 1px solid #abffc3;
    border-radius: 5px;
}

.stats #playerCount::before {
    content: 'Player Count: '
}

.connections-title {
    text-decoration: underline;
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.buttons > a {
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border: 1px solid #ffd4f8;
    border-radius: 5px;
}

.buttons > a:hover {
    color: #ffd4f8;
}

.buttons > a:active {
    color: #ffc4f5;
}

a {
    text-decoration: none;
    color: inherit;
}

.extra-buttons {
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    bottom: 10px;
    left: 10px;
    font-size: 3rem;
    cursor: pointer;
}

.extra-buttons > a > i {
    filter: drop-shadow(-2px 2px 3px rgba(54,54,54,0.8));
}


/* Player list display */
#playerList.cover {
    background-color: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
}

#playerList .center {
    background-color: rgba(255, 212, 248, 0.9);
    border-radius: 1rem;
    box-shadow: -2px 2px 3px rgba(54,54,54,0.8);
    padding: 2rem;
    min-height: 50%;
    min-width: 30%;
}

#playerList .center .title {
    font-size: 3rem;
    padding-bottom: 0.25rem;
}

#playersList {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.5rem;
    font-size: 1.5rem
}

#playerListCount {
    padding-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

#playerListCount::before {
    content: 'Player Count: ';
}

.closePlayerList {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    font-size: 2rem;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    #playerList .center {
        min-width: 45%
    }
}