/* Tag  and sibling selectors */
h1 + h2{
    color:#D21972;
     font-family:georgia;
  color: white;
}
html{
    background-color:LightPink;
    text-align:center;
    background-image: url(https://cdn.pixabay.com/photo/2017/02/16/19/47/bokeh-2072271_1280.jpg);
     background-repeat: no-repeat;
      background-size: 3000px 3000px;
}
/* pseudo-class hover */
a:hover {
  background-color:#D21972;
  color:white;
    border-width:15px;
    margin:15px;
    border:solid;
}

p{
    font-family:georgia;
    color:#D21972;
}
/* pseudo-element */
p:first-letter {
  color:darkpink;
  font-size:x-large;
}
 /* class selectors */
.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 prop */
     filter: drop-shadow(8px 8px 10px gray);
    }
}
.iframe{
    border-style:double;
    color:#D21972;
    width:410px;
    height:260px;
    float:left;
}
.iframe2{
    border-style:double;
    color:#D21972;
    width:410px;
    height:260px;
    
}
.footer{
     color:black;
     font-family:Alex Brush;
     background-color:DeepPink;
       /* display property */
      display:initial;
     
}
.navbar{
    background-image: url(https://cdn.pixabay.com/photo/2017/09/06/11/43/purple-2721114_1280.jpg);
       background-size:1000px 750px;
     background-repeat:no-repeat;
}
/* id selectors */
#author{
    font-family:Copperplate;
    color:black;
}
#bmd{
   color:#D21972;
     font-family:georgia;}
#h1{
  text-shadow: 2px 2px 5px #D21972;
   color:black;
}