body {
	height: 100vh;
	background: linear-gradient(to bottom right, tan, linen);
    background-size: cover;
}

p {
	font: x-large "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

#boardOrMessage {
}

#boardDisplay {
    height: 30%;
    width: 70%;
    top: 35%;
    left: 0%;	
}

.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s linear;
}
.invisible {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s linear;
  /*
  transition: visibility 0s 2s, opacity 2s linear;*/
}

.offer {
	cursor: pointer;
}

.disabledOffer {
	cursor: not-allowed;
}

.board {
	table-layout: fixed;
	text-align: center;
	line-height: 50px;
}

.mui-btn {
    animation-duration: .1ms;
    animation-name: mui-node-inserted;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .87);
    background-color: #FFF;
    transition: all .2s ease-in-out;
    display: inline-block;
    height: 36px;
    padding: 0 26px;
    margin-top: 6px;
    margin-bottom: 6px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background-image: none;
    text-align: center;
    line-height: 36px;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    letter-spacing: .03em;
    position: relative;
    overflow: hidden
}

.mui-btn:active, .mui-btn:focus, .mui-btn:hover {
    color: rgba(0, 0, 0, .87);
    background-color: #fff
}

.mui-btn[disabled]:active, .mui-btn[disabled]:focus, .mui-btn[disabled]:hover {
    color: rgba(0, 0, 0, .87);
    background-color: #FFF
}

tr.row {
  box-sizing: border-box;
  display: table;
  table-layout: fixed;

  border-collapse: seperate;
  border-spacing: 8px 0;
  padding: 4px;
}

td {
	width: 66px;
	border-radius: 6px;
	background-color: rgba(200, 210, 200, 0.5);
  display: table-cell;
  flex: 1;
  flex-direction: column;
  position: relative;

  margin-right: 8px;
  padding: 6px;
}