a{
    color:#318f9b;
}
body{
    Background-color:PowderBlue;
}
h3{
    color:#26734d;
}
h4{
    color:DimGray;
}
p{
    color:rgb(255, 102, 163);
}
table {
  border-collapse: collapse;
  width: 150%;
  height: 50px;
}
td {
  text-align: center;
  height: 50px;
}
li{
    color:rgb(255, 102, 163);
}
.even-row{
    Background-color:rgb(250, 128, 114);
}
.odd-row{
    Background-color:hsl(60, 100%, 70%);
}
.header{
    Background-color:rgb(214, 214, 194);
}
#section-headers{
    color:rgb(255, 0, 102);
}
.important{
  color: black !important;
}
img.contrast-filter{
    filter:contrast(200%);
}
.title{
    font-family:cursive;
    font-size:15px;
    text-align:center;
}
.content{
    font-family:cursive;
    font-size:15px;
}
figcaption{
    background-color:white;
}
h1::before{
  content:url(smiley.gif);
}
a:hover {
  background-color: yellow;
}
h1{
    visibility: visible;
}
div {
  width: 300px;
  height: 100px;
  background: white;
  position: relative;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  from {left: 0px;}
  to {left: 200px;}
}
img{
    border:solid;
    border-color:black;
    height:150px;
    width:150px;
    padding:10px;
    /* Add padding*/

}
.hue-135{
    filter:hue-rotate(135deg);
}