body {
  /*zoom: 125%;*/
  margin: 0;
  padding: 0;
  background-color: #000;
  background-image: url(/img/ScratchAndWin/7DeadlySins/background.webp);
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}
@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}
button {
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
    max-width: 100px;
}
.sc__inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sc__wrapper {
  display: block;
  width: 100%;
  height: 375px;
  max-height: 375px;
  min-height: 375px;
  max-width: 375px;
  min-width: 375px;
  margin: 20px auto;
  border: 7px solid #c39d63;
}

.sc__container {
  position: relative;
  overflow: hidden;
  height: 375px;
  max-height: 375px;
  min-height: 375px;
  max-width: 375px;
  min-width: 375px;
}

.sc__container > img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.sc__container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.sc__infos {
  text-align: center;
  height: 100px;
  line-height: 100px;
  margin-top: 0px;
  font-weight: bold;
  font-size: 18px;
}

.inner_html {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c39d63;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: space-between;
  align-content: space-between;
}

.inner_html .card {
  width: 32%;
  height: 32%;
  background: black;
}

@keyframes attention-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 15px rgba(255, 71, 87, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}
.attention-pulse {
	animation: attention-pulse 1.5s 3 ease-in-out;
}