/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
 

style>
  html{
        background-image:url();
        font-family:"Rockwell";
  }
          
        
        
        
    
    
    body{
        
        margin:0;
    }
        
    #box{
        border: black 10px groove;
        height: 700px;
        width:700px;
        margin: auto;
        padding: 15px;
      

    }
    
    #one{
        
        border:black 3px solid;
        height: 400px;
        width: 500px;
    
        
    }
    
   
    .highlight
    {
        text-shadow: 2px 2px yellow;
        
    }
    
    
   .rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}



            

        
        
    

