@import url("https://fonts.googleapis.com/css2?family=Skranji&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Skranji", cursive;
}


#demoElement {
  max-width: 100vw;
  height: 100vh;
  position: fixed;
  width: 100%;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  teansform:scale(.8);
}

.container-inner {
  background: #a4363e;
  border-radius: 30px;
  box-shadow: 5px 6px 0px -2px #620d15, -6px 5px 0px -2px #620d15,
    0px -2px 0px 2px #ee9191, 0px 10px 0px 0px #610c14,
    0px -5px 0px 1px #e66565, 0px 0px 90px 45px #0d2f66;
  width: 600px;
}


p {
  font-size:20px;
  box-sizing: border-box;
  color: #461417;
  padding:8px 0 8px 20px;
}
.title
{
  text-align:center;
  text-decoration:underline;
  padding: 20px 0 0 0;
  font-size:50px;
}
.subtitle
{
  font-size:30px;
  text-align:center;
  padding: 20px;
}
.content {
  background: radial-gradient(#fffbf3, #ffe19e);
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px 18px 20px 18px;
  box-shadow: 0px 0px 0px 6px #5e1e21, 0px 0px 8px 6px #84222b,
    inset 0px 0px 15px 0px #614506, 6px 6px 1px 1px #e66565,
    -6px 6px 1px 1px #e66565;
  text-align: center;
  display:grid;
  grid-template-columns: 100px 1fr;
  grid-gap:20px;
}




.list {
  grid-column: 2;
  display:grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(10, 40px);
  grid-gap:20px;
  text-align:left;
  padding-left:50px;
}
.numberlist {
  grid-column: 1;
  display:grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(10, 40px);
  grid-gap:20px;
}

.button {
  border-radius: 20px;
  border: 2px solid #49181e;
  font-family: "Skranji", cursive;
  color: #fff;
  text-shadow: 1px 2px 3px #000000;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 25px;
  grid-column: 1;
}

.green {
  background: linear-gradient(#ced869, #536d1b);
  box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565;
}

.red {
  background: linear-gradient(#ea7079, #891a1a);
  box-shadow: 0px 0px 0px 4px #7e1522, 0px 2px 0px 3px #e66565;
}

.container {
    background-image: url(https://cdn.streamelements.com/uploads/7e29f32f-0299-480f-a54b-1495880fbf63.png);
    background-repeat: no-repeat;   /* Ensure that background does not repeat */
    background-position: center;    /* Ensure image is centred */
    background-size: contain;
    width: calc(450px + 160px);                   /* Width and height should at least be the same as the canvas */
    height: calc(450px + 160px);
    transition: opacity 1s;
}


.canvas{
    top:80px;
    left:80px;
    width:450px;
    height:450px;
    position:relative;
}