@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.wrapper {
    background: #663399;
    -webkit-transform-origin: top right;
    transform-origin: top right;
    padding-top: 160px;
    min-height: 410px;
    margin-top: 40px;
    display: block;
    -webkit-transform: skewY(-1.5deg);
    transform: skewY(-1.5deg);
}

.inner {
  /* Reset skew from above. */
  -webkit-transform: skewY(1.5deg);
  transform: skewY(1.5deg);

  display: flex;
  position: absolute;
  color: white;
  padding: 0 2rem 0 6rem;
  margin-top: -190px;
}

.left {
  margin-top: 130px;
  width: 50%;
}

.left p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.4rem;
}

.right {
  width: 50%;
}

.right img {
  width: 100%;
  height: auto;
}


a {
  display: inline-block;
  border-radius: 2px;;
  color: white;
  padding: 2px;
  transition: all 0.25s ease-in-out;
}

a:hover {
  background-color: white;
  color: #663399;
}

h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
}
