body{
    background-color: lightblue;
    text-align: center;
}

h1{
   font-family: 'Lobster Two', cursive;
   font-size:38px;
   background-color: pink;
   color: white;
   font-weight: normal;
   text-decoration:none;
   border: 6px double white;
}

p{
   font-family: 'Satisfy', cursive;
   font-size:35px;
   background-color: lavender;
   color: indigo;
   font-weight: normal;
   text-decoration:none;
   border: 6px dotted white;
}



img{
width: 200;
height: 200;

}

a{
   font-family: 'Bad Script', cursive;
   font-size:35px;
   background-color: pink;
   color: purple;
   font-weight: bolder;
   text-decoration:none;
}


a:hover{
  text-decoration: underline;
}

img:hover{
  border-radius: 30%;
  border: 10px double lavender;
   transition: 0.5s all ease;
}

      