/*CSS elp from Gabriele Cirulli's original implementation of 2048: 
https://github.com/gabrielecirulli/2048/blob/master/style/helpers.scss */

body {
  background-color: #FAF8EF;
  font-family: "Helvetica"
}

.title {
  width: 600px;
  font-size: 80px;
  text-align: center;
  color: #BBADA0;
  font-weight: bold;
  font-size: 30px;
}

.subtitle {
  width: 600px;
  padding-top: -800px;
  font-size: 50px;
  text-align: center;
  color: #BBADA0;
  font-size: 15px;
}

.Row {
  display: flex;
}

.Container {
  display: flex;
  align-items: center;
  height: 95vh;
  flex-direction: column;
}

.Board {
  width: 600px;
  height: 600px;
  background-color: #BBADA0;
  border-radius: 10px;
  padding: 15px;
}

.Cell {
  border-radius: 5px;
  height: 142px;
  width: 140px;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 62px;
  font-weight: 600;
}

.TileNum0 {
  color: transparent;
  background-color: #CDC1B4;
}

.TileNum2 {
  color: #776E65;
  background-color: #EEE4DA;
}

.TileNum4 {
  color: #776E65;
  background-color: #EDE0C8;
}

.TileNum8 {
  color: #F9F6F2;
  background-color: #F2B179;
}

.TileNum16 {
  color: #F9F6F2;
  background-color: #F59563;
}

.TileNum32 {
  color: #F9F6F2;
  background-color: #F67C5F;
}

.TileNum64 {
  color: #f9f6f2;
  background: #f65e3b;
}

.TileNum128 {
  color: #f9f6f2;
  background: #edcf72;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.2381), inset 0 0 0 1px rgba(255, 255, 255, 0.14286);
}

.TileNum256 {
  color: #F9F6F2;
  background-color: #EDCC61;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.31746), inset 0 0 0 1px rgba(255, 255, 255, 0.19048);
}

.TileNum512 {
  color: #f9f6f2;
  background: #edc850;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.39683), inset 0 0 0 1px rgba(255, 255, 255, 0.2381);
}

.TileNum1024 {
  color: #f9f6f2;
  background: #edc53f;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.47619), inset 0 0 0 1px rgba(255, 255, 255, 0.28571);
}

.TileNum2048 {
  color: #f9f6f2;
  background: #edc22e;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.55556), inset 0 0 0 1px rgba(255, 255, 255, 0.33333);
}

.TileNum4096 {
  color: #f9f6f2;
  background: #5dda92;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.63493), inset 0 0 0 1px rgba(255, 255, 255, 0.38095);
}
