@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: absolute;
  left: -10px;
  top: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #cbcbcb;
  background-image: url("img/background.png");
  background-color: #cbcbcb;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: "Coda", cursive;
}

.deck {
  width: 345px;
  margin: 0 auto;
  background: #fbf7b7;
  padding: 16px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.deck .card {
  height: 75px;
  width: 75px;
  background: url("img/card.jpg") no-repeat center/90px;
  box-shadow: inset 0px 0px 0px 1px #1d1d1d;
  display: inline-block;
  margin: 0 15px 15px 0;
  line-height: 140px;
  font-size: 0;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  vertical-align: top;
  cursor: pointer;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  font-family: FontAwesome;
  line-height: 75px;
}
.deck .card:nth-child(4n) {
  margin: 0 0 15px 0;
}
.deck .card:nth-child(n+13) {
  margin: 0 15px 0 0;
}
.deck .card:nth-child(n+13):nth-child(4n) {
  margin: 0;
}
.deck .card.open {
  transform: rotateY(0);
  background: #2156a3;
  cursor: default;
}
.deck .card.show {
  font-size: 33px;
}
.deck .card.show .card-front {
  visibility: initial;
}
.deck .card.match {
  transform: rotateY(0);
  box-shadow: inset 0px 0px 0px 0px white;
  cursor: default;
}
.deck .card.match .card-front {
  visibility: initial;
  border-radius: 5px;
  margin: 4px;
  width: 67px;
  height: 67px;
}
.deck .card.match.c-pair6 {
  background: #a89e70 !important;
}
.deck .card.match.c-pair3 {
  background: #76a969 !important;
}
.deck .card.match.c-pair8 {
  background: #805757 !important;
}
.deck .card.match.c-pair5 {
  background: #bda8e1 !important;
}
.deck .card.match.c-pair7 {
  background: #729d99 !important;
}
.deck .card.match.c-pair1 {
  background: #6886cc !important;
}
.deck .card.match.c-pair4 {
  background: rgba(247, 241, 126, 0.8196078431) !important;
}
.deck .card.match.c-pair2 {
  background: #c2e2e4 !important;
}
.deck .card.notmatch {
  background: #EE0E51;
}
.deck .card .card-front {
  border-radius: 8px;
  visibility: hidden;
}

#score-panel {
  text-align: left;
  width: 345px;
  margin-bottom: 10px;
}
#score-panel .stars {
  margin: 0;
  padding: 0;
  display: inline-block;
  margin: 0 5px 0 0;
}
#score-panel .stars li {
  list-style: none;
  display: inline-block;
}
#score-panel .restart {
  float: right;
  cursor: pointer;
}

*::selection {
  background: transparent;
}

.swal2-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

/*# sourceMappingURL=main.css.map */
