*,
*::after,
*::before {
  box-sizing: border-box;
}

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;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.window {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #b89c8d;
  background-color: #edede9;
  font-size: 3vmin;
  height: 100vh;
  padding: 20px;
}

.board {
  position: relative;
  display: grid;
  grid-template-rows: repeat(4, 12vmin);
  grid-template-columns: repeat(4, 12vmin);
  gap: 2vmin;
  padding: 2vmin;
  border-radius: 1vmin;
  background-color: #d5bdaf;
}

.cell {
  border-radius: 1vmin;
  background-color: #e3d5ca;
}

.tile {
  --x: 0;
  --y: 0;
  --bg-color-lightness: 91%;
  --text-color-lightness: 1%;
  position: absolute;
  top: calc(2vmin + var(--y) * 14vmin);
  left: calc(2vmin + var(--x) * 14vmin);
  color: hsl(0, 0%, var(--text-color-lightness));
  font-weight: 700;
  font-size: 5vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12vmin;
  height: 12vmin;
  border-radius: 1vmin;
  background-color: hsl(40, 70%, var(--bg-color-lightness));
  transition: 0.2s;
  animation: show 0.2s;
}

@keyframes show {
  0% {
    opacity: 0.5;
    transform: scale(0.5);
  }
}
.top {
  display: grid;
  grid-template-columns: repeat(4, 12vmin);
  align-items: center;
  justify-items: center;
  color: white;
  background-color: #d5bdaf;
  gap: 2vmin;
  padding: 2vmin;
  border-radius: 1vmin;
  margin-bottom: 1.5rem;
}
.top__title {
  font-weight: 700;
  font-size: 4.5vmin;
}

.score {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.score__title {
  font-size: 1.5vmin;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.btn {
  cursor: pointer;
  color: white;
  background-color: #8d7467;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.2rem;
}

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