body {
  width: 100vw;
  height: 100vh;
  margin:0px;
		padding:0px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blob-wrapper {
  max-width: 400px;
  transition: all ease 1s;
  height: 400px;
}

.blob {
  cursor: pointer;
  position: fixed;
  left: 20vw;
  width: 40vw;
  height: 40vw;
  transition: all ease 1s;
  background-color: rgb(247, 80, 80);
}

@media (max-width: 767px) {
  .blob{
    left: 5vw;
    width: 90vw;
    height: 90vw;
  }
}


