body {
  height: 100%;
  margin: 0;
  font-family: sans-serif;
  user-select: none;
}
#filter {
  height: 100vh;
  width: 100%;
  position: absolute;
}
#blur {
  height: 100%;
  width: 100%;
  position: absolute;
  background-size: 300px;
  filter: blur(2px);
}
#Block {
  display: grid;
  place-items: center center;
  background-color: #00000099;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 2;
}
#center {
  display: grid;
  place-items: center center;
  background-color: #fff;
  min-width: 400px;
  max-width: 1000px;
  min-height: 300px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 8px #00000050;
  background-size: cover;
  word-break: break-all;
}
#winner {
  font-size: 80px;
  background-color: #ffffffcc;
}
input {
  color: #444;
  font-size: 24px;
  font-weight: bolder;
  background-color: #00ff15;
  padding: 30px 60px;
  border-radius: 15px;
  border: none;
  box-shadow: 0 6px #00e013;
}

/************************ GAMES ************************/

#full {
  display: flex;
  place-content: center center;
  height: 100vh;
  overflow: scroll;
}
#game-window {
  background-color: #fff;
  width: min-content;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 0 8px #00000090;
  overflow: hidden;
  z-index: 1;
}
#grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 20px;
  padding: 20px;
  align-items: center;
  justify-items: center;
}

/************************ PLAYER ************************/

#player {
  display: flex;
  border-bottom: 1px solid #ccc;
  align-items: center;
}
.score {
  color: #444;
  font-size: 42px;
  width: 100%;
  padding: 20px;
}
#one {
  border-top-left-radius: 15px;
  box-shadow: 0 0 6px 6px #7979ff inset;
}
#win {
  text-align: center;
}
#two {
  border-top-right-radius: 15px;
}
/* bgc #ff9fd7 (rose) */


/************** FLIP **************/

.flip-card {
  background-color: transparent;
  width: 200px;
  height: 200px;
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card-inner img {
  width: 100%;
  height: 100%;
}
.flip-card .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 #00000033;
  backface-visibility: hidden;
  overflow: hidden;
}
.flip-card-back {
  display: grid;
  place-content: center center;
  transform: rotateY(180deg);
}