#world .wrapper {
    width: 1280px;
    margin: auto;
}
.faction-container {
    background-color: #21150b;
    position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    padding: 1em;
}

.faction-name {
    font-size: 4em;
    color: #f5eec3;
    letter-spacing: 0.1em;
    padding-bottom: 1em;
}

.faction-emblem {
    max-width: 50%;
    margin: 1em auto;
}

.faction-description {
    font-size: 2em;
}

.faction-characters img {
    max-width: 45%
}

.faction-select-list {
    margin-bottom: 6em;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.faction-select-image {
    display: inline-block;
    background: #2c2622;
    border: 3px solid #00139a;
    height: 100%;
    position: relative;
    max-width: 45%;
    margin-bottom: 1em;
    margin-left: 1em;
    width: 100px;
}

.faction-select-image,
.faction-select-image img {
    border-radius: 2em;
}

.faction-select-image span {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;

    font-family: 'congenial', sans-serif;
    text-transform: uppercase;
    font-size: 1.5em;
    color: #f5eec3;

    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 2em 2em;
}

.faction-select-image.active::after,
.faction-select-image:hover::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00139a;
    border: 3px solid #fff;
    opacity: 0.25;
    border-radius: 2em;
    pointer-events: none;
}