/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
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;
}

#game {
  display: grid;
  grid-template-rows: 20vh 80vh;
  background-color: #4F759B;
  color: #fae588;
}
#game > header {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  align-items: center;
  text-align: center;
}
#game > header h1 {
  font-size: 2rem;
}
#game > header h3 {
  font-size: 1.5rem;
  color: #D6EFFF;
}
#game > main {
  display: grid;
  grid-template-rows: 25vh 55vh;
}
#game > main section {
  display: grid;
}
#game > main section#word ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 1rem;
  padding: 2rem 3rem;
}
#game > main section#word ul li {
  display: grid;
  background-color: #fae588;
  border-radius: 10px;
  color: #131200;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
}
#game > main section#keyboard ul {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
  padding: 2rem 3rem;
}
#game > main section#keyboard ul li {
  border-radius: 10px;
  display: grid;
  background-color: #D6EFFF;
  color: #131200;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
#game > main section#keyboard ul li.disabled {
  background-color: #808080;
}

html {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.metamorphous {
  font-family: "Metamorphous", serif;
  font-weight: 400;
  font-style: normal;
}

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