body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;  /* 100%; || 100vw; */
  
  
  
  /* background: linear-gradient(to top right, #FF5DFC, #973FF7, #5530FF, #11D5EE, #5DFFF8); */
  background-image: url("redirection.png");
  background-color: black;
  background-size: auto 100vh;     /* auto 100vh; || 100% 100%;*/
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;                /* prevents scrolling */
  position: relative;
}

/* The "redirect zone" – an invisible clickable area */
.redirect-zone {
  position: absolute;
  
  /* Position & size of the zone (adjust as you like) */
  top: 40%;      /* distance from top of the page */
  left: 00%;     /* distance from left of the page */
  width: 100%;    /* width of the clickable area */
  height: 20%;   /* height of the clickable area */

  /* Uncomment this border while designing, then remove it */
  /* border: 2px dashed red; */

  /* Make the whole area clickable */
  display: block;
}
