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

/*Body styling*/
body{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: white;
}

/*Container styling*/
.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50vh;
  box-shadow: 0 32px 32px -8px rgba(0, 0, 0, 0.5);
}

/* Distortion Styles*/
.distortion {
  position: fixed;
	width: 50vw;
	height: 60vh;
}