.tile {
  width: 50px;
  height: 50px;
  /* border: 0.2px solid #ffffff; */
  display: inline-block;
  text-align: center;
  flex: 1;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tile:nth-child(1) {
  border-left: 0.2px solid #8d8d8d;
}
.tile:nth-child(3) {
  border-right: 0.2px solid #8d8d8d;
}

.tile:nth-child(6) {
  border-right: 0.2px solid #8d8d8d;
}
.tile:nth-child(9) {
  border-right: 0.2px solid #8d8d8d;
}

.tiletext {
  margin-top: 20%;
  font-weight: 600;
  font-family: monospace;
  font-size: 18px;
}

.tilerow {
  display: flex;
}
.tilerow:nth-child(1) {
  border-top: 0.2px solid #8d8d8d;
}
.tilerow:nth-child(3) {
  border-bottom: 0.2px solid #8d8d8d;
}
.tilerow:nth-child(6) {
  border-bottom: 0.2px solid #8d8d8d;
}
.tilerow:nth-child(9) {
  border-bottom: 0.2px solid #8d8d8d;
}

#board {
  width: 600px;
  display: inline-block;
  /* box-shadow: 2px 2px 3px 1px #f2f2f2; */
  margin: auto;
  position: absolute;
  left: 20%;
  top: 10%;
}

.tileinput {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 10%;
  right: 10%;
  /* border: 0px solid #cecece; */
  border-radius: 2px;
  /* background: #5f5f5f; */
  text-align: center;
  font-size: 18px;
  /* color: #fff; */
  /* background: #ebebeb; */
  font-size: 18px;
  background: #2f3640;
  border-style: dashed;
  color:#ebebeb;
  border-width: 1px;
}

.tileinput:hover {
  background-color: #202020;
  cursor: pointer;
}

.tileinput:focus {
  background-color: #202020;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#selection {
  display: flex;
  margin-top: 10px;
}

.selectbtn {

  padding: 1px;
  border: 0.2px solid #c7c7c7;
  display: inline-block;
  float: left;
  flex: 1;
  margin-right: 8px;
  text-align: center;
  padding: 2%;
  border-radius: 10px;
  cursor: pointer;
  /* background: #fff; */
  opacity: 0.1;
  /* : hidden; */
  font-family: monospace;
}

.selectbtn:hover{
  background: #fff;
}

body{
  background: #353b48;
}

.tile{
  color:#fff;
}

#wingame{
  display: none;
  position: fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background: #252525;
  color:#fff;
  font-family: monospace;
  text-align: center;
  padding-top: 20%;
  font-size: 45px;
}
#retry{
  font-size: 26px;
  padding: 2%;
  font-family: monospace;
  margin-top: 10%;
  border-radius: 60px;
  color: grey;
}
#title{
  color: #fff;
  font-family: monospace;
  font-size: 32px;
}