.container{
  background-image:url("https://uploadsandimgs.carrd.co/assets/images/image05.jpg?v=1fb34c59");
  margin:5em 12em;
  gap:2em;
  padding:2em;
display:flex;
flex-direction:row;
flex-wrap:wrap;
overflow:hidden;
width:50em;
height:50em;
  }
  .sketch1{
    height:300px;
    width:auto;
    filter:drop-shadow(8px 8px 10px grey);
    }
    .sketch2{
      height:300px;
      width:auto;
      }
      .text {
      animation: jerky 0.5s infinite;
    }

    @keyframes jerky {
      0% {
        transform: rotate(2deg);
      }

      50% {
        transform: rotate(2deg);
      }

      51% {
        transform: rotate(-2deg);
      }

      100% {
        transform: rotate(-2deg);
      }
    }

  