/* Tag selctors*/
img {
    height:300px;
    width:300px;
     /* box model */
  border: 10px dotted white;
  padding:10px;
  margin: 10px;
    float:left;
    clear:left;
      animation: blurFilter 3s forwards;
     /* filter prop */
    filter: drop-shadow(8px 8px 10px gray);
}

@keyframes blurFilter {
    from {
        filter: blur(3px);
    }
    
    to {
        filter: blur(0px);
    }
}
table{
    border:10px double rgb(25, 176, 179);
    border-color:rgb(25, 176, 179);
    color:black;
    height:25px;
    width:30px;
}
main{
    color:rgb(25, 176, 179);
     font-family:georgia;
}
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;
}
.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;
}