/* notes */

#Box4{
    font-size:50;
    display:flex;
    justify-content:center;
    align-items: center;    
   }

/* notes        */ 

#Box2{
    font-size:40;
    display:flex;
    justify-content:center;
    align-items:center;
 }

/* notes      */

#Box1{
   position:absolute;
   top:1px;
 }


th {padding:20px;
    left:50px;
    top:20;
   }

#Box5{
  position:absolute;
     top:20px;
     left:14%;

  }

/* Note   */
#Box3{
   position:absolute;
   left:50%;
   top:30px;

   animation-name:rotate;
   animation-duration:2s;
   animation-iteration-count:infinite;
}


@keyframes rotate{
    100%{transform: rotateY(360deg)}
}
