#server-banner {
    display: flex;
    flex-flow: column;
    height: 100%;
}

#sb-image-container {
    display: flex;
    height: 25em;
    position: relative;
}

#sb-image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 1;
}

#sb-info {
    display: flex;
    position: relative;
    flex-flow: row;
    height: 35px;
    box-shadow: 0px 5px 5px #161616;
    background: linear-gradient(#4d4d4d, #242424);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-bottom: 1em;
}

#sb-info::before {
    display: block;
    position: absolute;
    top: 0;
    content: '';
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(160, 160, 160, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 0px 0px 10px 10px;
    pointer-events: none;
    z-index: 2;
}

#sb-info-text {
    width: 100%;
    color: #ffffff;
    font-size: 1.2em;
    font-family: "Oswald";
    line-height: 35px;
    text-shadow: 1px 1px 2px rgb(52, 52, 52);
    text-decoration: none;
    text-align: center;
}

#sb-title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#sb-bottom-container {
    display: flex;
    flex-flow: column;
    height: 30%;
    margin-top: 0.5em;
}

#server-buttons-container {
    display: flex;
    flex-flow: row;
    width: 100%;
    height: 62px;
    border-radius: 15px;
}

.server-button-separator {
    margin-left: 0.5%;
    margin-right: 0.5%;
}

.server-button {
    position: relative;
    height: 62px;
    width: 100%;
    border-radius: 15px;
    text-align: center;
    align-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5em;
    font-family: "Oswald";
    text-shadow: 1px 1px 2px rgb(52, 52, 52);
    cursor: pointer;
}

.server-button::before {
    display: block;
    position: absolute;
    top: 0;
    content: '';
    margin-top: 3px;
    margin-left: 3px;
    width: 98%;
    height: 29px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 15px 15px 20px 20px;
    pointer-events: none;
    z-index: 2;
}

.map {
    background: #8300af;
    box-shadow: inset 0px 0px 20px 10px rgba(95, 10, 121, 0.6), 0px 5px 5px #161616;
}

.black {
    background: #181818;
    box-shadow: inset 0px 0px 20px 10px rgba(30, 30, 30, 0.6), 0px 5px 5px #161616;
}

.server-button:hover {
    opacity: 0.75;
}

.blue {
    background: #004faf;
    box-shadow: inset 0px 0px 20px 10px rgba(10, 65, 121, 0.6), 0px 5px 5px #161616;
}

.nointeract {
    cursor: default;
}

.nointeract:hover {
    opacity: 1;
}

#server-playerlist {
    display: flex;
    position: relative;
    flex-flow: column;
    margin-top: 2em;
    margin-left: 35%;
    margin-right: 35%;
    box-shadow: 0px 5px 5px #161616;
    border-radius: 15px;
    color: #ffffff;
    background: #11d706;
    font-family: "Oswald";
    text-shadow: 1px 1px 2px rgb(52, 52, 52);
}

#server-playerlist::before {
    display: block;
    position: absolute;
    top: 0;
    content: '';
    margin-top: 3px;
    margin-left: 3px;
    width: 98%;
    height: calc(40%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 15px 15px 20px 20px;
    pointer-events: none;
    z-index: 2;
}

.sp-header {
    text-align: center;
    align-content: center;
    font-size: 1.5em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
}

.sp-label {
    position: relative;
    z-index: 3;
}

.sp-item {
    text-align: center;
    align-content: center;
    font-size: 1.2em;
}

.sp-bottom {
    width: 100%;
    text-align: center;
    align-content: center;
    font-size: 1.2em;
    padding-bottom: 0.3em;
}