body {
    height: 100vh;
    margin: 0;
    display: flex;
    font-family: monospace;
    color: #fff;
  }

  body h1,
  body p,
  body a {
    color: #fff;
  }

  body .cursor {
    pointer-events: none;
  }

  body .cursor__ball {
    position: fixed;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    z-index: 1000;
  }

  body .cursor__ball circle {
    fill: #f7f8fa;
  }

  body .left,
  body .right {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.8s ease-in-out;
  }

  body .right {
    position: relative;
    background-image: url("Weddings.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  body .left {
    position: relative;
    background-image: url("Productions.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  body .right:hover {
    width: 110%;
    transition: all 0.8s ease-in-out;
  }

  body .left:hover {
    width: 110%;
    transition: all 0.8s ease-in-out;
  }

  body .right a {
    border-bottom: 2px solid #fff;
  }

a.fill-div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hidden-mobile {
  display: none;
}

@media (max-width: 1000px){

  .hidden-mobile {
    display:block;
  }

  .hidden-desktop {
    display:none !important;
  }

  body .left,
  body .right {
    height: 50%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: none;
  }


}

