body {
    margin: 30px;
    overflow: hidden;
  }
  
  .background {
    position: fixed;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background: lightskyblue (45deg, #4CAF50, #2196F3);
    transform: skewY(-12deg);
    transform-origin: bottom left;
    z-index: -1;
  }
  
  .content {
    position: relative;
    padding: 20px;
    z-index: 1;
  }
  
  h1 {
    font-size: 48px;
    color: #151414;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  