a { 
    color: blue;
}
body{
    background: rgb(255, 160, 122);
}
b {
    color:rgb(255, 0, 102) ;
}
li {
    color: rgb(255, 0, 102);
}
img.contrast-filter {
    filter: contrast(400%);
}
img.profilePic { 
    width: 250px;
}
.odd-row {
      background-color: #5F9EA0;
}
.even-row {
      background-color: lightcoral;
}
h1 {
    color: rgb(0, 0, 0);
}
        
p {
    color: #191970 !important;
}
        
#description {
    color: rgb(255, 0, 0);
}
#section-headers{
    color: #191970;
}
.title{
    font-family:cursive;
    font-size:15px;
    text-align:center;
}
.featured{
    font-size:15px;
    font-family: cursive;
}
.content{
    font-size:15px;
    font-family:cursive;
}
figure {
  border: 1px #cccccc solid;
  padding: 2px;
  margin: auto;
}

figcaption {
  background-color: black;
  color: white;
  font-style: italic;
  padding: 2px;
  text-align: center;
}
li:first-child{
    color:#32ed96;
    font-size:24px;
}
h1{
    visibility:visible;
}
h1 {
  border-left-style: solid;
  border-left-color: coral;
}
h1 {
  border-right-style: solid;
  border-right-color: coral;
}
.hue-135{
    filter: hue-rotate(135deg);
}
.brightness {
    filter: brightness(250%);
}
div {
    width: 300px;
    height: 150px;
    background: lightpink;
    position: relative;
    animation: mymove 5s infinite;
}
@keyframes mymove {
    from {left: 0px;}
    to {left: 200px;}
}