/* Tag selctors*/
img {
   height:300px;
    width:300px;
    border-color:#D21972;
     width: 300px;
     /* box model */
  border: 10px dotted white;
  padding:15px;
  margin: 10px;
   /* animation */
    animation: blurFilter 5s forwards;
}

@keyframes blurFilter {
    from {
        filter: blur(3px);
    }
    
    to {
        filter: blur(0px);
        filter: contrast(150%);
        /* filter prop */
        filter: drop-shadow(8px 8px 10px gray);
        
    }
}
table{
    border:10px double rgb(25, 176, 179);
    border-color:rgb(25, 176, 179);
    color:black;
    height:25px;
    width:30px;
  box-shadow: 10px 10px 5px black;
}
main{
    color:rgb(25, 176, 179);
     font-family:georgia;
}
mark, blockquote{
    background-color:Lightblue;
  font-size:20px;
  height:300px;
  width:350px;
   color:black;
     font-family:Courier New;
    border:5px solid #D21972;
    text-shadow: 2px 2px 5px #D21972;
      /* opacity */
    opacity:0.8;
    /* transition */
  transition-property: width;
  transition-duration: 2s;
  transition-timing-function: ease-in;
  background-color:PaleTurquoise;
}

blockquote:hover {
  transform: rotate(5deg);
   box-shadow: 10px 10px 5px black;
}
a:hover {
    color:white;
     background-color:rgb(25, 176, 179);
    border-width:10px;
    margin:10px;
    border:solid;
}

 /* class selectors */
.html{
    background-color:PaleTurquoise;
    text-align:center;
     background-image: url(https://cdn.pixabay.com/photo/2016/12/01/20/17/texture-1876097_1280.jpg);
     background-repeat: no-repeat;
      background-size: 300px 3000px cover;
}
.caption{
    font-family:Courier New;
    text-align:left;
}
.footer{
     color:black;
     background-color:SkyBlue;
     font-family:Alex Brush;
       /* display property */
     display:initial;
}
 /* id selectors */
#a{
    text-align:center;
}
#h1 {
  text-shadow: 2px 2px 5px rgb(25, 176, 179);
   color:black;
   
}
#th td{
    font-family: Courier New;
    text-align:left;
    font-size:15px;
}
.navbar{
    background-image: url(https://th.bing.com/th/id/R.996f1295028c71a03cd97fac496fa357?rik=wBJfGweFdb%2f4lw&pid=ImgRaw&r=0);
     background-size:1000px 85px;
     background-repeat:no-repeat;
}