body{
    width: 90%;
    height: 90%;
     /* overflow: hidden; */
}

body::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

.myImg { 
    position:absolute;

    transition: margin-left 3s, margin-top 3s; 
/*animation-name: rotate;
animation-duration: 30s; 
animation-iteration-count: infinite; */
height:300px;
width:auto;


}
 @keyframes rotate{ 
 from{ transform: rotate(-360deg); } 
to{ transform: rotate(360deg); }
} 