html, body {
    background: #FAF9F6;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.table {
    display: table;
    height: 100%;
    width: 100%;
}

.board {
    display: table-cell;
    width: 700px;
    height: 700px;
    background-color: #F7F7F7;
    border: 2px solid black;
    box-sizing: border-box;
    margin-left: -1px;
    margin-top: -1px;
    position: relative;
    margin: 0 auto;
    vertical-align: middle;
}

.center {
    width: 490px;
    height: 490px;
    background-color: #F7F7F7;
    position: absolute;
    left: 105px;
    top: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.title {
    font-family: 'Oswald', sans-serif;
    font-size: 70px;
    font-weight: 400;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0;
}

.community-chest-deck,
.chance-deck {
    width: 200px;
    height: 120px;
    border: 2px solid black;
    padding: 10px;
    text-align: center;
}

.community-chest-deck {
    transform: rotate(135deg);
}

.chance-deck {
    transform: rotate(-45deg);
}

.deck {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid black;
}

.label {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.row {
    display: flex;
}

.horizontal-row {
    width: 490px;
    position: absolute;
    left: 105px;
}

.vertical-row {
    height: 490px;
    position: absolute;
    top: 105px;
}

.bottom-row {
    bottom: 0;
}

.left-row {
    left: 0;
}

.top-row {
    top: 0;
}

.right-row {
    right: 0;
}

.space {
    border: 1px solid black;
    box-sizing: border-box;
}

.horizontal-row .space {
    width: 54.44px;
    height: 105px;
}

.vertical-row .space {
    height: 54.44px;
    width: 105px;
}

.corner {
    width: 105px;
    height: 105px;
    position: absolute;
}

.go {
    bottom: 0;
    left: 0;
}

.jail {
    left: 0;
    top: 0;
}

.free-parking {
    top: 0;
    right: 0;
}

.go-to-jail {
    right: 0;
    bottom: 0;
}

.container {
    padding: 5px;
    text-align: center;
    font-family: 'Coda', cursive;
}

.property .color-bar {
    height: 25px;
    background-color: blue;
    border-bottom: 2px solid black;
    margin: -5px -5px 5px -5px;
}

.property .name {
    font-size: 10px;
    padding-bottom: 5px;
}

.railroad .name,
.utility .name {
    font-size: 10px;
    padding-top: 10px;
}

.railroad .drawing,
.utility .drawing {
    font-size: 40px;
    padding-bottom: 5px;
}

.price {
    font-size: 8px;
}

.brown {
    background-color: #8B4513;
}

.light-blue {
    background-color: #ADD8E6;
}

.pink {
    background-color: #FFC0CB;
}

.orange {
    background-color: #FFA500;
}

.red {
    background-color: #FF0000;
}

.yellow {
    background-color: #FFFF00;
}

.green {
    background-color: #008000;
}

.dark-blue {
    background-color: #00008B;
}
