body {
    background-color: #a76138;
}

#board {
    /* (4 * 50px from .guess-block) + (60px from .feedback-container) + (2 * 3px from border) */
    width: calc(200px + 60px + 6px);
    /* (10 * 50px from .guess-block) + (27px from .row-separator) + (2 * 3px from border) */
    height: calc(500px + 27px + 6px);
    margin: 0 auto;
    margin-top: 20px;
    font-size: 0;
    background-color: #d8946e;
    border: 3px solid #7b543e;
}

.guess-row {
    display: inline-block;
    width: 200px;
    height: 50px;
}

.guess-block {
    padding: 5px;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: cover;
}

.feedback-container {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    margin-left: 10px;
}

.feedback-block {
    padding: 5%;
    margin: 5%;
    display: inline-block;
    width: 40%;
    height: 40%;
    background-size: cover;
    box-shadow: 0px 1px 2px brown;
    border-radius: 50%;
}

#pins-container {
    width: 360px;
    height: 120px;
    margin: 0 auto;
    font-size: 0;
    margin-top: 20px;
}

.pin-button {
    display: inline-block;
    height: 50px;
    width: 50px;
    margin: 5px;
    background-size: cover;
    background-color: transparent;
    border: none;
    outline: inherit;
}
.pin-button:focus {
  outline: none;
}

/* 3px * 9 = 27px totaal */
.row-separator {
    background-color: #ab785a;
    padding: 1px 0;
    margin: 0;
    border: 0;
    border-top: 1px solid #ab785a;
}

#games-won-text {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 3vw;
    font-weight: bold;
}