body {
    background-color: rgb(250, 245, 240);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #776e65;
}
#bi {
    display: flex;
    flex-direction: row;
}
#ipo{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}
#title {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
}
.iu {
    padding: 5px;
    background-color: #bbada0;
    font-size: 20px;
    display: flex;
    flex-direction:column;
    width: 40%;
    border-radius: 5px 5px 5px 5px;
    margin: 2px;
}
#new_game{
    padding: 5px;
    background-color: #bbada0;
    font-size: 20px;
    display: flex;
    flex-direction:column;
    width: 30vw;
    border-radius: 5px 5px 5px 5px;
    margin: 2px;
    align-items: center;
}
#player {
    width: 400px;
    height:400px;
    background-color: #cdc1b5;
    border: #bbada0;
    margin: 0 wrap;
    display: flex;
    flex-wrap: wrap;
}
.tile {
    width: 90px;
    height:90px;
    border: 5px solid #bbada0;

    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.x_1{
    background-color: #eee4da;
    color: #727371;
}
.x_2{
    background-color: #ece0ca;
    color: #727371;
}
.x_3{
    background-color: #f4b17a;
    color: white;
}
.x_4{
    background-color: #f57c5f;
    color: white;
}

.x_5{
    background-color: #f65d3b;
    color: white;
}

.x_6{
    background-color: #edce71;
    color: white;
}

.x_7{
    background-color: #edcc63;
    color: white;
}

.x_8{
    background-color: #edc651;
    color: white;
}

.x_9{
    background-color: #eec744;
    color: white;
}

.x_10{
    background-color: #ecc230;
    color: white;
}

.x_11{
    background-color: #fe3d3d;
    color: white;
}

.x12{
    background-color: #ff2020;
    color: white;
}
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}
.popup {
	margin: 70px auto;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	width: 30%;
	position: relative;
	transition: all 5s ease-in-out;
}
.popup h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
	position: absolute;
	top: 20px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
.popup .close:hover {
	color: #06D85F;
}
.popup .content {
	max-height: 30%;
	overflow: auto;
	color: black
}
