#page {
    min-height: 100vh;
    padding-top: 25vh;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 16px #000
}

h1 {
    width: 100%;
    color: #fff;
    font-size: 3rem
}

#server-list {
    z-index: 3;
    margin: 40px auto 0;
    width: 70%;
    background-color: rgba(25, 25, 25, .7)
}

#no-vote,
#vote {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

#no-vote>div,
#vote>div {
    flex-basis: 32%
}

#no-vote a,
#vote a {
    text-decoration: none
}

.server-unit {
    flex: 1;
    justify-content: space-between;
    align-content: center;
    padding-top: 40px
}

.server-logo {
    width: 100%;
    height: 200px;
    overflow: hidden
}

.server-logo>img {
    height: 100%
}

.vote-link {
    font-size: .8em;
    color: #fff;
    margin: 10px auto 0;
    width: 30%;
    background: #28bd2d;
    border-radius: 2px;
    padding-top: 6px;
    padding-bottom: 6px
}

.vote-link>.fa {
    z-index: 0;
    position: static;
    font-size: .9em;
    margin-left: 2px;
    margin-top: -1px
}

.connect-link {
    color: #fff;
    margin: 10px auto 0;
    padding: 2px;
    font-size: .9em;
    font-weight: 400;
    width: 50%;
    background: rgba(60, 60, 60, .95);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(10, 10, 10, .6)
}

.stat-block {
    width: 60%;
    margin: 10px auto;
    color: #fff;
    font-size: .7em;
    background: hsla(0, 0%, 49%, .3);
    box-shadow: 0 0 10px #191919;
    padding: 10px 0
}

.stat-block div {
    font-size: inherit
}

.stat-block>div {
    margin-top: 0px
}

.stat-block .name-line {
    width: 90%;
    margin: 0 auto;
    padding: 3px 0 5px;
    border-bottom: 2px solid hsla(0, 0%, 49%, .6)
}

.stat-block .name-line>div {
    display: inline-block
}

.stat-block .name-line .online-status {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: #28bd2d;
    box-shadow: 0 0 5px hsla(0, 0%, 49%, .8);
    margin-right: 10px
}

.stat-block .name-line .offline {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: #bd282d;
    box-shadow: 0 0 5px hsla(0, 0%, 49%, .8);
    margin-right: 10px
}

.stat-block .stat-line .players {
    margin-left: 20%
}

.stat-block .stat-line .fa {
    font-size: .8em
}

.stat-block .stat-line>div {
    display: inline-block
}

@media screen and (max-width:790px) {
    h1 {
        font-size: 4rem
    }
}

@media screen and (max-width:420px) {
    h1 {
        font-size: 3rem
    }
}