html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, iframe {
  vertical-align: bottom;
  max-width: 100%;
}

input, textarea, select {
  font: inherit;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Aktura-Regular";
  src: url("Aktura-Regular.woff2") format("woff2"), url("Aktura-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
body {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Aktura-Regular, sans-serif;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.full-bg-gif {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.full-bg-gif img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.full-bg-gif .lana-complete {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}
.full-bg-gif .lana-complete img {
  width: 500px;
  aspect-ratio: 1/1;
}

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

#sudoku-grid {
  display: grid;
  grid-template-columns: repeat(9, 32px);
  gap: 0;
  position: relative;
}
#sudoku-grid:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  filter: blur(60px);
  transform: scale(1.4);
  background: linear-gradient(90deg, #e35ce6, #e3582a);
  background-size: 200% 200%;
  animation: animateGlow 10s ease infinite;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#sudoku-grid input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 1.75rem;
  border: 1px solid #999;
  box-sizing: border-box;
  outline: none;
  font-family: Aktura-Regular, sans-serif;
  background-color: rgba(255, 255, 255, 0.15);
  /* semi-transparent */
}

/* Thicker borders for 3x3 blocks */
#sudoku-grid input:nth-child(3n+1) {
  border-left: 2px solid #000;
}

#sudoku-grid input:nth-child(n+1):nth-child(-n+9),
#sudoku-grid input:nth-child(n+28):nth-child(-n+36),
#sudoku-grid input:nth-child(n+55):nth-child(-n+63) {
  border-top: 2px solid #000;
}

#sudoku-grid input:nth-child(9n) {
  border-right: 2px solid #000;
}

#sudoku-grid input:nth-child(n+73) {
  border-bottom: 2px solid #000;
}

input:disabled {
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.25) !important;
  /* semi-transparent */
}

#message {
  font-family: Aktura-Regular, sans-serif;
  margin-top: 3rem;
  font-weight: bold;
  font-size: 2rem;
}/*# sourceMappingURL=style.css.map */