img {
    max-width: 300px;
    max-height: 300px;
    position: relative;
    animation: anim 5s infinite;
    background-repeat: repeat;
    background-size: 350px 200px;
    
}

@keyframes anim {
    0%   {left:0px; top:0px;}
    50%  {left:200px; top:0px;}
    100% {left:0px; top:0px;}
  }

body {
    background-image: url("https://static.vecteezy.com/system/resources/thumbnails/044/150/763/small/abstract-luxury-gradient-blue-background-free-photo.jpg");
    background-color: navy;

}

h1{
    font-size: 80px;
    font-family:fantasy;
    color:darkcyan;
    
}

h2{
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:aqua;
    text-decoration: underline;
}

h3{
    font-size: 50px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: cyan;
    text-decoration: underline;
}

p{
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: lightblue;
}

li{
    font-size: 25px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: whitesmoke;
}

table, th, td {
    border: 1px solid whitesmoke;
    color: whitesmoke;
  }

a {
font-size: 60px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

  div {
    border: 3px solid whitesmoke;
    border-top-color:teal;
    border-right-color: teal;
    padding: 10px; 
    width: 500px;
    overflow: auto;
  }