@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

ul li {
    list-style-type: none;
}

body {
    background: url("img/mc-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    color: #dedede;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    padding: 20px 15px;
    font-size: 1.4rem;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul li.shop,
nav ul li.bans {
    background: rgb(233, 178, 14);
    border: none;
    padding: 10px 50px;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 0.4px;
}


nav ul li.bans {
    background: #d93753;
}

main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main {
    text-align: center;
}

main h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 600;
    text-shadow: #eee 0px 1px;
    margin-bottom: 0;
}

main p {
    margin-top: -7px;
    color: #cecece;
    font-size: 1.2rem;
    font-weight: 300;
}

main button {
    margin-top: 10px;
    background: rgb(233, 178, 14);
    border: none;
    padding: 15px 60px;
    font-size: 1.3rem;
    text-align: center;
    margin-top: 2rem;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #62bd19;
    border-radius: 50%;
}

.red {
    background: crimson;
}

.players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
}

.home {
    background: #4F7942 !important;
}

.content {
    position: relative;
    top: 120px;
    color: #fff;
}

.banlist table {
    margin-inline: auto;
    width: 80%;
    background: #101010;
    border-radius: 10px;
}

.banlist table td,
.banlist table th{
    padding: 1.5rem;
    text-align: left;
}

.banlist td.user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banlist tr,
.banlist th{
    border-bottom: 0.3px solid #aaa;
}

.banlist tr:last-child {
    border-bottom: none;
}

.banlist table {
    border-collapse: collapse;
}

.temp {
    background: #12796f;
    padding: 7px 12px;
    border-radius: 10px;
    font-weight: 300;
    font-size: 0.85rem;
}

.perm {
    background: crimson;
    padding: 7px 12px;
    border-radius: 10px;
    font-weight: 300;
    font-size: 0.85rem;
}