body {
    background-color: #161d23;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8em;
    font-weight: 300;

}

body,
HTML {
    width: 100%;
    height: 100%;
}

#gameContainer {
    width: 100%;
    height: 100%;
    position: relative;
}

.npc {
    width: 15px;
    height: 15px;
    position: absolute;
    transition: all 150ms ease-in-out;
}

.npc::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3em;
    ;
}

.npc.rock::after {
    content: "🗿";
}

.npc.paper::after {
    content: "🧻";
}

.npc.scissor::after {
    content: "✂️";
}

.npc.lizard::after {
    content: "🦎";
}

.npc.spock::after {
    content: "🖖";
}

.npc.zombie::after {
    content: "🧟‍♂️";
}

.npc.human.variation1::after {
    content: "🙎‍♂️";
}

.npc.human.variation2::after {
    content: "🙍‍♀️";
}

.npc.human.variation3::after {
    content: "👨‍⚕️";
}

.npc.human.variation4::after {
    content: "👩‍⚕️";
}

.npc.human.variation5::after {
    content: "👨‍🌾";
}

.npc.human.variation6::after {
    content: "👩‍🌾";
}

.npc.human.variation7::after {
    content: "👨‍🍳";
}

.npc.human.variation8::after {
    content: "👩‍🍳";
}

.npc.human.variation9::after {
    content: "👨‍🔧";
}

.npc.human.variation10::after {
    content: "👩‍🔧";
}

.npc.human.variation11::after {
    content: "👨‍🏭";
}

.npc.human.variation12::after {
    content: "👩‍🏭";
}

.npc.human.variation13::after {
    content: "👨‍💼";
}

.npc.human.variation14::after {
    content: "👩‍💼";
}

.npc.human.variation15::after {
    content: "👨‍🔬";
}

.npc.human.variation16::after {
    content: "👩‍🔬";
}

.npc.human.variation17::after {
    content: "👨‍🚒";
}

.npc.human.variation18::after {
    content: "👩‍🚒";
}

.npc.human.variation19::after {
    content: "👮‍♂️";
}

.npc.human.variation20::after {
    content: "👮‍♀️";
}

.npc.human.variation21::after {
    content: "👷‍♂️";
}

.npc.human.variation22::after {
    content: "👷‍♀️";
}

#controlsContainer {
    width: 200px;
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(255 255 255 / 25%);
    padding: 15px;
    color: white;
    display: none;
    z-index: 9;
}

#aliveNpcs {
    width: 100%;
    margin-bottom: 15px;
}

#aliveNpcs td {
    text-transform: capitalize;
}

#aliveNpcs td:last-child {
    text-align: right;
}

#controlsContainer h4 {
    font-size: 1.1em;
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
}

#startContainer {
    max-width: 600%;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 9;
}

#startContainer h1 {
    font-size: 3em;
    font-weight: 100;
    margin: 0;
}

#startContainer h3 {
    margin: 0;
    margin-bottom: 25px;
    font-weight: 100;
}

#startContainer>button {
    border-radius: 100px;
    padding: 8px 30px;
    font-size: 1.7em;
    font-weight: 300;
    text-transform: uppercase;
}

#startContainer>button i {
    margin-left: 10px;
    display: inline-block;
    font-size: 0.9em;
}

#gameTypeContainer button {
    background: none;
    border: none;
    margin-top: 15px;
    font-size: 2em;
    opacity: 0.5;
}

#musicBtn.active{
    opacity: 1;
}

#gameTypeContainer button.active{
    opacity: 1;
}


#controlsContainer .settingField input {
    border-radius: 3px;
    font-size: 1em;
    margin-top: 5px;
}

#controlsContainer .settingField {
    margin-bottom: 9px;
}

#toggleSettings i {
    margin-left: 10px;
}

#settingsFieldsContainer{
    display: none;
}

#playPause {
    background: none;
    border: none;
    color: white;
    font-size: 1.4em;
    width: 100%;
}