body {
  font-family: "Forte", "Dana Yad AlefAlefAlef Normal",
    "Fb Cursive";
  background-color: #fff4d9;
  background-image: url(../assets/images/noa/1x/רקע\ לעמוד\ המשחקים.png);
  background-size: cover;
  background-position: center;
  color: var(--other-color);
  --other-color: rgb(211 138 44);
  --same-color: rgb(217 181 134);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  position: relative;
}

.con>div {
  border: 2px solid var(--other-color);
  border-radius: 100%;
  height: 40px;
  width: 40px;
  margin: 10px;
  box-shadow: 2px 2px var(--other-color);
  cursor: pointer;
  background-size: contain;
}

.con {
  display: flex;
  align-items: center;
  justify-content: center;
}


.lightyellow {
  background-color: lightyellow;
  background-image: url(./images/yellow.png);
}

.lightgreen {
  background-color: #dffff5;
  background-image: url(./images/green.png);
}

.lightblue {
  background-color: #d1e5ec;
  background-image: url(./images/blue.png);
}

.lightpurple {
  background-color: rgb(233 209 236);
  background-image: url(./images/purple.png);
}

.lightpink {
  background-color: lightpink;
  background-image: url(./images/pink.png);
}

.lightgray {
  background-color: lightgray;
  background-image: url(./images/brown.png);
}


.last,
.last>td {
  border-bottom: 0px;
}

.container {
  border: 2px solid var(--other-color);
  box-shadow: 3px 3px var(--other-color);
  width: fit-content;
  padding: 20px;
  margin: auto;
}

.point {
  width: 17px;
  height: 17px;
  border-radius: 100%;
  background-color: var(--other-color);
  margin: 1px;
}

.points {
  display: grid;
  grid-template-columns: 20px 20px;
  grid-template-rows: 20px 20px;
  align-items: center;
  align-content: stretch;
  margin-left: 15px;
  opacity: 0.5;
  cursor: not-allowed;
}

.row {
  display: flex;
  align-items: center;
}

h1 {
  text-align: center;
  text-transform: capitalize;
  font-weight: normal;
  font-size: 45px;
}

#message {
  text-align: center;
  font-size: 20px;
  margin: 0;
  visibility: hidden;
}

.winM {
  text-align: center;
  font-size: 150px;
}

.winM:hover {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.header {
  position: sticky;
  /* display: flex;
  flex-direction: row; */
}

.menu-img {
  width: 10vh;
  height: 10vh;
  border-radius: 10%;
  background-color: rgba(255, 255, 255, 0.5);
  margin-top: 0px;
  margin-left: 0px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.nav-list-item {
  position: fixed;
  left: 30px;
  top: 30px;
}