/* a minimalist set of CSS resets */

/* default to border-box */
html {
  box-sizing: content-box;
  font-size: 16px;
}

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

/* adjust typography defaults */
body {
  margin: 1rem;
  font-family: sans-serif;
  line-height: 1.5;
  height: 100vh;
}

/* images and videos max out at full width */
img,
video {
  height: auto;
  max-width: 100%;
}

div {
  border-radius: 24px;
  box-shadow: 0px 0px 0px 10px #ffcc00;
  position: absolute;
}

div::after {
  content: "";
  border: 20px solid #ffcc00;
  position: absolute;
  inset: -20px;
}

#juego {
  top: 20px;
  left: 20px;
  height: 585px;
  width: 1040px;
}

#dibujo {
  top: 20px;
  right: 20px;
  height: 980px;
  width: 820px;
}
