
    .focus-rectangle {
      position: absolute;
      top: 0;
      left: 0;
      border: 1vh solid #eee;
      width: 99vw;
      height: 99vh;
      opacity: 0;
      transition: all 0.5s ease;
    }

    /* Animation */
    /* keeping this for now in case we need to change animation */

    .focus-blink {
      animation: focus-blink 1.5s;
      animation-iteration-count: infinite;
      /* animation-iteration-count: 3; */
      animation-delay: 0.25s;
    }

    @keyframes focus-blink {
      0% {
        opacity: 1;
        box-shadow: 0px 0px 18px 3px #fff;
      }

      50% {
        opacity: 0.4;
        box-shadow: 0px 0px 0px 0px #fff;
      }

      100% {
        opacity: 1;
        box-shadow: 0px 0px 18px 3px #fff;
      }
    }