.app {
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;

}

h1 {
  margin: 0;
  color: white;
  margin-bottom: 30px;
  text-align: center;
  line-height: 40px;
}

.whole-body {
  width: 200px;
  height: 200px;
  background-color: rgb(180, 220, 255);
  border-radius: 50%;
  font-size: 140px;
  text-align: center;
  line-height: 200px;
  margin-top: 20px;
  box-shadow: 0 0 0 15px rgba(180, 220, 255, 0.2);
  user-select: none;
}

.bingo {
  color: white;
  font-size: 30px;
  font-family: sans-serif;
  margin-top: 20px;
}

.again {
  display: inline-block;
  font-size: 20px;
  background-color: white;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  user-select: none;
  background-color: #ff8a00;
  font-weight: bold;
  margin-top: 20px;
}

.again:hover {
  background-color: #e86100;
  cursor: pointer;
}

.again:active {
  background-color: rgba(255, 255, 255, 0.6);
  transform: translate(2px, 2px);
}

.selector {
  display: flex;
  position: relative;
  margin-top: 70px;
}

.face {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 40px;
  text-align: center;
  line-height: 62px;
  cursor: pointer;
  user-select: none;
  -webkit-box-shadow: -9px 10px 5px -2px rgba(0,0,0,0.26);
-moz-box-shadow: -9px 10px 5px -2px rgba(0,0,0,0.26);
box-shadow: -9px 10px 5px -2px rgba(0,0,0,0.26);
}

.face:not(:last-child) {
  margin-right: 12px;
}



.speakerCloseMed {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../imgs/sclose.png) center center no-repeat;
  top: 20px;
  right: 20px;
  z-index: 5000000;
  cursor: pointer;
}


.gameMemoryContainer {
  background-color: #695aa6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -2;
}

canvas{
  position:absolute;
	left:0;
	top:0;
	z-index:-1;
	border:0px solid #000;
}
