

.fullscreen
{
  position: relative;
  width: 100%;
  height: 100%;
 
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    box-sizing: border-box;
    
}

@media only screen and (max-width: 768px) {


 body {
  margin: 0;
  padding: 0;
  width: 200vw;  /* Make the body twice as wide as the viewport */
  height: 200vh; /* Make the body twice as tall as the viewport */
  overflow: hidden; /* Prevent scrolling */
  transform: scale(0.5); /* Scale it down to 50% */
  transform-origin: top left; /* Scale from the top-left corner */
}

#root {
  height: 200%!important;
}
}








