* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  background: navajowhite;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  text-align: center;
}
body h1 {
  display: flex;
  align-items: center;
  margin: 0;
  color:  #005B6D;
  position: fixed;
  top: 0;
  padding: 15px;
  left: 0;
  width: 100%;
  justify-content: center;
  text-align: center;
}
#tabuleiro {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
#tabuleiro .l {
  display: flex;
  flex-direction: row;
  padding: 0;
}
.b{
  display: flex;
  
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
  margin: 0px;
  border-radius: 0px;
  border: none;
  background: transparent;
  font-size: 40pt;
  font-weight: 400;
  color: black;
  transition: all 0.7s ease-out;
}
.c {
  border-top: 3px solid black;
}
.d {
  border-right: 3px solid black;
}
.e {
  border-left: 3px solid black;
}

@keyframes Ocupado {
  0% {
    background: transparent;
  }
  50% {
    background: #FF0000;
  }100% {
    background: transparent;
  }
}

@keyframes Destaque {
  0% {
    color: black;
    font-size: 40pt;
    background: transparent;
  }
  40% {
    color: #2FFF00;
    font-size: 60pt;
    background: #2FFF0040;
  }
  80% {
    color: #2FFF00;
    font-size: 60pt;
    background: #2FFF0040;
  }
  100% {
    color: black;
    font-size: 40pt;
    background: transparent;
  }
}
#Ganado {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 20;
  background: #42445A;
  opacity: 0;
  color: white;
  transition: all 0.7s ease-in-out;
}
#Ganado section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 10px;
  width: 100%;
  height: 100%;
}
#Ganado section h1 {
  display: flex;
  color: #FF0048;
  opacity: 1;
 padding: 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#classific {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px;
  text-align: center;
  color: #00FF13;
}
#again {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #00FF44;
  color: white;
  font-weight: 700;
  margin: 20px;
  padding: 15px;
  width: 230px;
  border-radius: 15px;
  border: none;
  transition: all 0.2s ease-out;
}
#again:active, #aganin:hover {
  background: #00F341;
  width: 231px;
  padding: 16px;
  
}
#ponto {
  display: flex;
  flex-direction: col;
  justify-content: center;
  background: transparent;
  border-radius: 20px;
  color: white;
  font-weight: 300;
  width: 85%;
  flex-direction: row;
  transform: translateY(-20%);
}

.π {
  display: flex;
  background: #42445A;
  margin: 5px;
  width: 50%;
  padding: 12px;
  justify-content: Center;
  border-radius: 5px;
  font-size: auto;
}