
body{
  background-color: #A9A9A9;
}

h1 {
  color: #000080;
  text-align: center;
}
h2 {
  color: #0000ff;
  font-style: italic;
  text-align: center;
}
h3 {
  color: #800000;
  font-style: italic;
  text-align: center;
}
p {
  line-height: 20px;
  color: green;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
}
ul {
  color: maroon;
  line-height: 25px;
}
ol {
  color: purple;
  line-height: 25px;
}
.marquee {
    height: 60px;
    overflow: invisible;
    position: relative;
    background: #A9A9A9;
    color: maroon;
    border: 1px solid #A9A9A9;
}

.marquee p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 1s linear infinite;
    -webkit-animation: scroll-left 1s linear infinite;
    animation: scroll-left 15s linear infinite;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
