:root {
    --background: hsl(0, 0%, 0%);
    --background-second: hsl(0, 0%, 14%);
    --primairy-text: hsl(0, 0%, 77%);
    --primairy-btn: hsl(0, 0%, 20%);
    --primairy-btn-text: hsl(0, 0%, 82%);
}

body{
    background-color: var(--background);
    font-family: googleSansReg;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: rgb(156, 156, 156);
}

@font-face {
    font-family: googleSansMed;
    src: url(GoogleSans-Medium.ttf);
}

@font-face {
    font-family: googleSansReg;
    src: url(GoogleSans-Regular.ttf);
}

@font-face {
    font-family: googleSansIt;
    src: url(GoogleSans-Italic.ttf);
}

button {
    font-family: googleSansMed;
    border: 0;
    padding: 12px 16px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: var(--primairy-btn);
    color: var(--primairy-btn-text);
    width: 100%;
    box-sizing: border-box;
    font-size: 25px;
    font-weight: 500;
}

button:disabled {
    background-color: rgb(207, 126, 126);
}

button.small_button_text {
    font-size: 14px;
}

label {
    font-size: 22px;
}

.fullscreenpage {
    width: 100%;
    height: 100%;
    padding: 12px 24px;
    box-sizing: border-box;
    overflow-y: scroll;
}

.playerwrapper {
    background-color: var(--background-second);
    box-shadow: 0px 2px 11px 0 rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    color: black;
    padding: 8px 24px;
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--background-second);
}

.playerbuttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.playerbuttons button {
    font-family: googleSansMed;
    border: 0;
    padding: 12px 40px;
    margin: 5px 0px;
    border-radius: 12px;
    background-color: rgb(201, 203, 205);
    color: rgb(85, 85, 85);
    font-size: 40px;
    min-width: 60px;
    height: 40px;
    line-height: .1px;
}

.playerbuttons button.minus{
    background: unset;
    color: hsl(0, 0%, 78%);
}

.playerbuttons button.plus{
    background: hsl(0, 0%, 74%);
    color: hsl(0, 0%, 0%);
}

.playerbuttons button:hover, .playerbuttons button:active {
    background-color: rgb(80, 139, 198);
}

.playerwrapper h2 {
    font-size: 18px;
    display: inline-block;
    vertical-align: top;
    color: var(--primairy-text);
    margin: 0;
    margin-left: 8px;
    margin-bottom: 4px;
}

.playerwrapper p {
    font-size: 35px;
    display: inline;
}

.playerwrapper span {
    display: inline-block;
    margin: 2px 8px;
    color: rgb(187, 187, 187);
}

.armoede {
    background-color: #6b624f;
}

.dood {
    background-color: #815858;
}

.selected {
    border-color: hsl(197, 38%, 54%);
    /* background-color: hsl(200, 10%, 17%); */
}

.scoreimg {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-content: center;
}

.scorecounter {
    height: 40px;
    padding: 5px 0;
    box-sizing: border-box;
    filter: invert(100%);
}

.infobanner {
    height: 30px;
}

.playercontainer {
    display: flex;
    flex-direction: column;
}

input {
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background-color: rgb(134 134 134);
    border: 2px solid #ababab;
    margin: 10px 0;
    font-size: 25px;
}

.btn_container {
    display: flex;
    flex-direction: row;
    margin: 0 -8px;
    padding: 16px 0;
}

.btn_container button {
    margin: 0 8px;
}

button, button:active, button:hover, button:focus {
    outline: none;
}

.score_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    padding: calc(24px - 8px);
}

.score_buttons button {
    margin: 8px;
}

.score_buttons .big {
    font-size: 50px;
    background: rgb(255, 159, 159);
    color: rgb(104, 13, 13);
}

.scoreboard {
    margin-bottom: 120px;
    display: block;
}