@import url(https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap);
/* 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,
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;
}

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

html {
  /* 1rem = 10px */
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 2rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  background-color: #f2f0f0;
  color: #000;
  overflow: hidden;
}

p {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  width: 100%;
  display: block;
}
p:last-child {
  margin-bottom: 0;
}

blockquote {
  background: rgba(227, 104, 101, 0.1019607843);
  padding: 2.8rem 5rem;
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.1rem;
  border-radius: 1rem;
  margin-bottom: 4rem;
}
blockquote strong {
  font-weight: 600;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-bottom: 4rem;
}
@media (width <= 767.98px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-bottom: 4rem;
}
@media (width <= 767.98px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.container {
  max-width: 164rem;
  width: 100%;
  margin: 0 auto;
  padding: 0rem;
}
.container__bx {
  padding: 0 2.4rem;
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .container__bx {
    flex-flow: column;
  }
}

header {
  position: absolute;
  top: 0;
  z-index: 9;
}
header img {
  max-width: 6.2rem;
  margin-top: 2rem;
  margin-left: 2rem;
}

a {
  outline: none;
  cursor: pointer;
  transition: all 300ms linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #B1C900;
  font-weight: 700;
  font-family: "Montserrat Alternates", sans-serif;
  display: block;
  width: 100%;
}

ul,
ol {
  padding-left: 2rem;
}

ul li {
  list-style: disc;
  padding-bottom: 2rem;
}

ol li {
  list-style: decimal;
  padding-bottom: 2rem;
}

strong,
b {
  font-weight: 700;
}

em {
  font-style: italic;
}

a {
  color: #3c3c3b;
  text-decoration: none;
}

code {
  background-color: #fff;
  padding: 2rem;
  font-family: monospace;
  border-radius: 1rem;
  margin-bottom: 2rem;
  display: block;
}

mark {
  background-color: #000;
  color: #fff;
}

pre {
  background-color: #fff;
  padding: 2rem;
  overflow-x: auto;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

h1 {
  font-size: 4rem;
  line-height: 6rem;
  margin-bottom: 4rem;
}
@media (width <= 767.98px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

h2 {
  font-size: 3.2rem;
  line-height: 4rem;
  margin-bottom: 3.2rem;
}
@media (width <= 767.98px) {
  h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

h3 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  margin-bottom: 2.6rem;
}
@media (width <= 767.98px) {
  h3 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

h4 {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-bottom: 2rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-bottom: 2rem;
}

h6 {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-bottom: 2rem;
}

main {
  height: 100dvh;
  width: 100dvw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home {
  padding: 10rem 2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .readspeaker {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 9;
}

.mdl-intro {
  background-color: #fff;
  width: 100%;
  max-width: 90rem;
  min-height: 58rem;
  height: auto;
  border-radius: 2rem;
  padding: 8rem;
  overflow: hidden;
  height: auto;
  border-radius: 2rem;
  padding: 8rem;
  overflow: hidden;
  max-height: calc(100dvh - 12rem);
}
@media (width <= 767.98px) {
  .mdl-intro {
    padding: 4rem;
    height: auto;
    min-height: auto;
  }
}
.mdl-intro__cn {
  position: relative;
  height: calc(100dvh - 35rem);
  overflow-y: auto;
  padding-left: 13rem;
}
@media (width <= 767.98px) {
  .mdl-intro__cn {
    padding-left: 7rem;
  }
}
.mdl-intro h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 130%;
  position: relative;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 9;
  min-height: 10rem;
  display: flex;
  align-items: center;
}
@media (width <= 767.98px) {
  .mdl-intro h1 {
    font-size: 3rem;
    min-height: 5rem;
  }
}
.mdl-intro h1 span {
  position: absolute;
  width: 9.8rem;
  height: 9.8rem;
  background-color: #2A9076;
  border-radius: 50%;
  color: #fff;
  font-size: 5rem;
  font-weight: 800;
  line-height: 6.1rem;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -12.4rem;
}
@media (width <= 767.98px) {
  .mdl-intro h1 span {
    width: 5rem;
    height: 5rem;
    font-size: 2.6rem;
    line-height: 3rem;
    left: -6.4rem;
  }
}
.mdl-intro p {
  font-size: 2.2rem;
  line-height: 3.3rem;
}
@media (width <= 767.98px) {
  .mdl-intro p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.mdl-intro .btn {
  width: calc(100% - 13rem);
  margin: 0 0 auto auto;
  margin-top: 4rem;
}
@media (width <= 767.98px) {
  .mdl-intro .btn {
    width: calc(100% - 7rem);
  }
}

.content {
  padding: 2rem;
  position: relative;
}
.content--menu2 .btn.btn-check {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 9;
}
.content--menu .btn.btn-check {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  z-index: 9;
}

.mdl-content {
  background-color: white;
  border-radius: 1rem;
  height: 100%;
  padding: 8rem 8rem 4rem 8rem;
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
@media (width <= 767.98px) {
  .mdl-content {
    padding: 8rem 2rem 2rem 2rem;
  }
}
.mdl-content__nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.mdl-content__nav-it {
  background-color: #2A9076;
  border-radius: 1rem;
  background-color: #2A9076;
  font-size: 2rem;
  line-height: 2.6rem;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.5rem;
  margin-bottom: 2.1rem;
}
@media (width <= 991.98px) {
  .mdl-content__nav-it {
    font-size: 1.4rem;
    line-height: 1.6rem;
    border-radius: 0.5rem;
    padding: 0 1rem;
    height: 2rem;
    margin-top: -5rem;
    margin-right: -2rem;
  }
}
.mdl-content__bx {
  width: 100%;
  flex-flow: row;
  flex-wrap: wrap;
  max-height: calc(100dvh - 14rem);
  overflow-y: auto;
  align-items: flex-start;
  gap: 0;
}
.mdl-content__add {
  position: absolute;
  top: 2rem;
  right: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.mdl-content__add img {
  margin: 0;
  max-width: 3rem;
}
.mdl-content__add .rsbtn {
  margin-bottom: 0;
}
.mdl-content__cl--lf {
  width: 40%;
  padding-right: 4.8rem;
}
@media (width <= 767.98px) {
  .mdl-content__cl--lf {
    width: 100%;
    padding-right: 0;
  }
}
.mdl-content__cl--rg {
  width: 60%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
@media (width <= 767.98px) {
  .mdl-content__cl--rg {
    width: 100%;
    justify-content: center;
  }
}
.mdl-content__cl--rg img {
  margin: 0 !important;
}
.mdl-content__cl--full {
  margin-top: 4.8rem;
}
.mdl-content__btns {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: flex-end;
  margin-top: 4rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
}
.mdl-content__btns img {
  margin: 0 !important;
}
.mdl-content img {
  margin: 1.5rem auto;
}
.mdl-content h1 {
  width: 100%;
}
.mdl-content--menu {
  padding: 8rem 17rem 4rem 17rem;
}
@media (width <= 1199.98px) {
  .mdl-content--menu {
    padding: 8rem 8rem 4rem 8rem;
  }
}
@media (width <= 767.98px) {
  .mdl-content--menu {
    padding: 8rem 2rem 2rem 2rem;
    padding-bottom: 8rem;
  }
}
.mdl-content--menu .readspeaker {
  position: absolute;
  top: 2rem;
  right: 4rem;
}
@media (width <= 767.98px) {
  .mdl-content--menu .mdl-content__bx {
    height: calc(100dvh - 20rem);
  }
}
.mdl-content--menu ul {
  padding-left: 8rem;
  font-family: "Montserrat Alternates", sans-serif;
}
@media (width <= 767.98px) {
  .mdl-content--menu ul {
    padding-left: 2rem;
  }
}
.mdl-content--menu ul div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mdl-content--menu ul li {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.6rem;
  list-style: none;
  padding-bottom: 1rem;
}
.mdl-content--menu ul li ul {
  margin-top: 1rem;
}
.mdl-content--menu ul li ul li {
  font-size: 2.2rem;
  line-height: 3.3rem;
}
.mdl-content--menu ul li ul li ul {
  padding-left: 3rem;
}
@media (width <= 767.98px) {
  .mdl-content--menu ul li ul li ul {
    padding-left: 2rem;
  }
}
.mdl-content--menu ul li ul li ul li {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
}
.mdl-content--menu ul li ul li ul li ul li {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 600;
}
.mdl-content--test {
  padding: 8rem;
}
@media (width <= 767.98px) {
  .mdl-content--test {
    padding: 8rem 2rem 2rem 2rem;
  }
}
.mdl-content--test h1 {
  font-weight: 800;
  color: #0f1729;
  position: relative;
  padding-left: 12.4rem;
  padding-top: 1.2rem;
  max-width: 71.6rem;
  margin: 0 auto;
  margin-bottom: 3.7rem;
  min-height: 9rem;
}
@media (width <= 767.98px) {
  .mdl-content--test h1 {
    min-height: 5rem;
    padding-left: 7rem;
    padding-top: 0;
  }
}
.mdl-content--test h1::before {
  content: "";
  width: 9rem;
  height: 9rem;
  background-image: url("../imgs/bt-interactiu-big.png");
  display: block;
  background-size: 9rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media (width <= 767.98px) {
  .mdl-content--test h1::before {
    width: 5rem;
    height: 5rem;
    background-size: 5rem;
  }
}
.mdl-content--video {
  padding-top: 10rem;
}

.mdl-test {
  background: rgba(42, 144, 118, 0.1019607843);
  border-radius: 2rem;
  padding: 3.4rem 10rem 5.7rem;
  width: 100%;
  position: relative;
}
@media (width <= 991.98px) {
  .mdl-test {
    padding: 2rem;
  }
}
.mdl-test p {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.mdl-test__bx {
  display: flex;
  gap: 2.7rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
@media (width <= 767.98px) {
  .mdl-test__bx {
    margin-top: 5rem;
  }
}
.mdl-test__bx--card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 90rem;
  margin: 0 auto;
}
@media (width <= 991.98px) {
  .mdl-test__bx--card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 575.98px) {
  .mdl-test__bx--card {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mdl-test__bx--card .card {
  width: 100%;
  max-width: 20.4rem;
  margin: 0 auto;
}
.mdl-test__fill {
  margin-top: 4.4rem;
  margin-bottom: 3rem;
}
.mdl-test__fill .options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-flow: row wrap;
}
.mdl-test__fill .options .word {
  background: #2a9076;
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  border-radius: 0.8rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  height: 3.4rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 15rem;
  padding: 0.2rem 1.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  cursor: grab;
}
.mdl-test__fill .sentence {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 4.8rem;
  text-align: center;
  max-width: 68rem;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.mdl-test__fill .sentence p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 4.8rem;
}
.mdl-test__fill .drop-zone {
  display: inline-flex;
  padding: 0;
  border: 1px dashed rgba(15, 23, 41, 0.2);
  border-radius: 5px;
  min-width: 15rem;
  background-color: #fff;
  height: 3.4rem;
  margin: 0 1rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
}
.mdl-test__fill .drop-zone.filled {
  height: 3.4rem;
}
.mdl-test__fill .btn-check {
  margin-top: 3.7rem;
}
.mdl-test .btn {
  margin-top: 3.7rem;
}

.mdl-fb {
  border-radius: 2rem;
  width: 100%;
  text-align: center;
}
@media (width <= 767.98px) {
  .mdl-fb {
    padding: 2rem;
  }
}
.mdl-fb--ko h2 {
  color: #E21A23;
}
.mdl-fb--ok h2 {
  color: #2A9076;
}
.mdl-fb__bx {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.mdl-fb img {
  max-width: 10rem;
  margin: 0 !important;
  margin-bottom: 3.1rem !important;
}
.mdl-fb h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 4rem;
  margin-bottom: 3.5rem;
}
.mdl-fb p {
  margin-bottom: 9rem;
}

.card {
  width: 20.4rem;
  height: 26rem;
  perspective: 100rem;
  cursor: pointer;
  position: relative;
}
.card .card-front,
.card .card-back {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: #2A9076;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  position: absolute;
  transition: transform 0.6s;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 1.4rem;
  text-align: center;
}
.card .card-front {
  background-color: #2A9076;
  font-weight: 700;
}
.card .card-front:hover {
  transform: scale(1.1);
}
.card .card-front p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.card .card-back {
  background-color: #fff;
  color: #000;
  transform: rotateY(180deg);
  border: 0.1rem solid #2A9076;
  font-size: 1.4rem;
  line-height: 2rem;
}
.card .card-back p {
  font-size: 1.4rem;
  line-height: 2rem;
}
.card.flip .card-front {
  transform: rotateY(180deg);
}
.card.flip .card-back {
  transform: rotateY(0);
}

.btn-close {
  max-width: 3.6rem;
  position: absolute;
  z-index: 9;
  right: -1rem;
  top: -1rem;
}
@media (width <= 767.98px) {
  .btn-close {
    right: -0.5rem;
    top: -0.5rem;
  }
}
.btn-close img {
  max-width: 3.6rem;
  margin: 0;
}

.buttons {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 3rem;
}
.buttons a:hover {
  transform: scale(1.2);
}
.buttons img {
  max-width: 3rem;
  margin: 0;
}

.mdl-video {
  max-width: 97.8rem;
  margin: 0 auto;
}
.mdl-video img {
  margin: 0 !important;
}
.mdl-video__desc {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  font-size: 24px;
  font-weight: 600;
  line-height: 32.74px;
}

.test-container {
  max-width: 75rem;
  margin: 0 auto;
  margin-top: 0.4rem;
}
.test-container p {
  font-family: Nunito Sans;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.test-container p strong {
  font-weight: 800;
}
.test-container .options {
  max-width: 54.8rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 2.8rem;
}
.test-container .options__it input[type=radio],
.test-container .options__it input[type=checkbox] {
  display: none;
}
.test-container .options__it input[type=radio]:checked + label::after,
.test-container .options__it input[type=checkbox]:checked + label::after {
  content: "";
  background-color: #2a9076;
  border-color: #2a9076;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0.5rem;
  border-radius: 50%;
}
.test-container .options__it label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #000;
  margin-bottom: 2.7rem;
  position: relative;
}
.test-container .options__it label::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid rgba(0, 2, 50, 0.5019607843);
  border-radius: 50%;
  margin-right: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.test-container .btn-check {
  margin-top: 3.7rem;
}

#content {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  background-color: #E21A23;
  width: -moz-fit-content;
  width: fit-content;
  height: 8rem;
  border-radius: 4rem;
  font-family: "Nunito Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.6rem;
  text-align: center;
  border: 0;
  padding: 0 7.8rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: color 0.3s ease;
  border: 0.2rem solid #E21A23;
  position: relative;
}
@media (width <= 767.98px) {
  .btn {
    height: 6rem;
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  transition: top 0.5s ease;
}
.btn:hover::before {
  top: 0;
}
.btn:hover {
  color: #E21A23;
}
.btn span {
  position: relative;
  z-index: 1;
}

.btn-check {
  background-color: #E21A23;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.4rem;
  border-radius: 4rem;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.6rem;
  text-align: center;
  border: 0;
  padding: 0 2.8rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 27.7rem;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.btn-check span {
  display: flex;
}
.btn-check span::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-size: 2.4rem;
  background-image: url("../imgs/chevron-double-right.png");
  display: inline-flex;
  margin-left: 1rem;
}
.btn-check:hover {
  border: 0.1rem solid #E21A23;
}
.btn-check:hover span::after {
  background-image: url("../imgs/chevron-double-right-red.png");
}

.btn-puzzle:hover {
  transform: scale(1.2);
}
.btn-puzzle img {
  max-width: 8rem;
}

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