body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  background-color: #e6e6e6;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.card {
  width: calc(550px * 1);
  height: calc(450px * 1);
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  transform: rotate(-30deg);
  position: relative;
  z-index: 1;
}
.card__left {
  background-color: #e6e6e6;
  width: 50%;
  transform: rotate(-6deg) skew(-6deg, -6deg);
  margin-right: -3px;
  border: 1px solid rgba(20, 20, 20, 0.2);
}
.card__content {
  height: calc(100% - (80px * 1));
  width: auto;
  margin: calc(18px * 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card__content__icon {
  display: flex;
  height: 64px;
  width: 64px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.card__content div {
  align-self: center;
  margin-top: 8px;
}
.card__right {
  background-color: #e6e6e6;
  background-image: url(img.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  transform: rotate(6deg) skew(6deg, 6deg);
  margin-left: -3px;
  color: #202020;
  border: 1px solid rgba(20, 20, 20, 0.3);
}
.card::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 5px;
  right: calc(210px * 1);
  height: calc(130px * 1);
  width: calc(130px * 1);
  transform: rotate(45deg) skew(-32deg, -32deg);
  z-index: -1;
  box-shadow: calc(180px* 1) calc(180px * 1) calc(30px * 1) calc(45px * 1) rgba(0, 0, 0, 0.8);
}

.center-text {
  text-align: center;
}

.align-top {
  position: absolute;
  top: 48px;
  left: 48px;
}