@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
* {
  font-family: "Open Sans", sans-serif;
}

a:link,
a:visited {
  color: blue;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

p {
  color: #39424e;
}

.container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@-webkit-keyframes fader {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fader {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.container h1 {
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container h1 .title {
  font-weight: 700;
  display: flex;
  align-items: center;
  margin: 0.5rem;
}
.container h1 .highlighter {
  margin-left: -0.25rem;
  width: 20px;
  height: 28px;
  background: #28a94b;
  -webkit-animation: fader 1500ms infinite;
  animation: fader 1500ms infinite;
}

#tbl {
  border-spacing: 5px;
  max-width: 90vw;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

td {
  font-size: 22px;
  width: 72px;
  height: 72px;
  text-align: center;
  vertical-align: middle;
  background-color: white;
  cursor: pointer;
  border-radius: 8px;
  transition: all ease-in-out 100ms;
}
td.blank-cell {
  opacity: 0.5;
}

.selected {
  background-color: #ffff99 !important;
}

footer {
  position: absolute;
  bottom: 5rem;
  z-index: -1;
}

.shake-it {
  -webkit-animation-name: shake;
          animation-name: shake;
  -webkit-animation-iteration-count: 4;
          animation-iteration-count: 4;
  -webkit-animation-duration: 150ms;
          animation-duration: 150ms;
}

.product {
  display: inline-block;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  background-color: #fff;
  width: 200px;
}

@media screen and (max-width: 599px) {
  #tbl {
    padding: 5px;
    max-width: 100vw;
  }
  td {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
}
@-webkit-keyframes shake {
  0%, 50%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}
@keyframes shake {
  0%, 50%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}
#discoball {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-75%, -100%);
  scale: 0.75;
  transition: all ease-in-out 250ms;
  opacity: 0;
}/*# sourceMappingURL=main.css.map */