* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #000;
  background: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

.wrapper {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
}

.wrapper:before {
  position: absolute;
  content: '';
  width: 150%;
  height: 340px;
  transform: rotate(19.14deg);
  background-color: #f6f4ed;
  left: -25%;
  bottom: 8%;
  z-index: 1;
}

.wrapper-inner {
  position: relative;
  z-index: 9;
  height: 100%;
}

.dflex {
  display: flex;
  align-items: center;
  justify-content: center;
}
