body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    background-image: url(background.png);
    background-size: contain;
    background-position-x: 50%;
    background-position-y: 50%;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.0) 50%,
    rgba(0, 0, 0, 0.8) 100%
    );
}

#container {
    width: 35%;
    height: 95%;
    position: fixed;
    background-color: rgba(58, 48, 42, 0.877);

    border-radius: 30px;
    border: 8px solid rgba(26, 21, 19, 0.877);
    box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.781);
}

#title {
    text-align: center;
    color: rgb(15, 12, 11);
    font-size: 50px;
    font-family: cursive;
}

#list {
    display: flex;
    justify-content: center;
}

.list-item {
    width: 90%;
    background-color: rgb(34, 27, 25);
    padding: 10px;
    box-sizing: border-box;

    border-radius: 20px;
    border: 6px solid rgb(26, 22, 18);

    color: beige;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin: 10px;
    gap: 10px
}

.tab-button {
    width: 50%;
    height: 50px;
    background-color: rgb(161, 161, 145);
    border: 3px solid rgb(26, 22, 18);
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    font-family: cursive;
}

.tab-button.active {
    text-decoration: underline;
    background-color: beige;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.781);
}

.server-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.server-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.server-info p {
    margin: 0px;
}

.server-info .server-name {
    font-size: 20px;
}

.player-info {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px;

    background-color: rgba(58, 48, 42, 0.877);
    border-radius: 10px;
    border: 3px solid rgba(26, 21, 19, 0.877);
}

.tab-content[data-tab="mods"] {
    display: none;
    justify-content: center;
}

.tab-content[data-tab="players"] {
    display: none;
    justify-content: center;
}

.tab-content.active {
    display: flex
}

.start-button {
    width: 90%;
    height: 50px;
    display: block;
    margin: 0 auto;
    /*background-color: beige;*/

    font-size: 20px;
    font-family: cursive;

    border-radius: 10px;
}