/* 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." */

body {
  background-image: url("fonfo.gif");
  background-repeat: no-repeat;
  background-size: 1500px 900px;
  text-align: center;
  text-decoration-line: overline underline;
  text-decoration-color: White;
  text-shadow: 1px 1px #FFFFFF;
  color: Black;
}

#Cajatonta {
  width: 250px;
  height: 125px;
  text-align: center;
  border: 2px solid;
  border-color: darkgreen;
  padding: 5px;
  box-shadow: 5px 5px;
  color: green;
}

.a {
  font: 30px Georgia, sans-serif;
}

.b {
  font: italic small-caps bold 20px/30px Georgia, serif;
}

div {
  width: 250px;
  height: 50px;
  background: black;
  position: relative;
  animation: mymove 6s infinite;
  animation-direction: alternate;
}

@keyframes mymove {
  from {left: 0px;}
  to {left: 1080px;}
  back-to {left: 0px;}
}