* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
  }

  .card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding-top: 30px;
  }

  .card-image {
    width: 100%;
    object-fit: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
  }

  .card-content {
    padding: 30px;
    padding-bottom: 45px;
    background-color: white;
    color: #222;
  }

  .card-content h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 28px;
  }

  .card-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 18px;
    color: #333;
  }

  .wobbly-wrapper {
    width: 300px;
    height: 300px;
    margin: 20pxx 30px;
  }

  svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .masked-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: url(#wobbleClip);
  }

  /* fallback for browsers without clip-path */
  @supports not (clip-path: url(#wobbleClip)) {
    .masked-image {
      clip-path: circle(50%);
    }
  }

  /* Desktop styles */
  @media (min-width: 1024px) {
    .card {
      flex-direction: row;
      max-width: 1280px;
      height: auto;
      overflow: hidden;
      padding-bottom: 10vh;
    }

    .card-image {
      width: auto;
      height: auto;
    }

    .card-content {
      width: auto;
      padding: 20px;
      padding-left: 50px;
      background-color: transparent;
    }

    .card-content h1 {
      font-size: 32px;
    }
  
    body {
      padding: 100px;
      height: 100vh;
    }
  }
