html {  background-image: url('bark.png');
    background-color: black;
    background-size: cover;
    height: auto; }

 .box1 {
  width:auto;
  height:50px;
  padding:20px;
  text-align: center;
  background-image: url('headr.jpg');
  letter-spacing:5px;
  font-size: 30px;
  font-family: "papyrus";
  color:pink;
  filter: drop-shadow(10px 7px 4px black);
}

  .box2 {
    width: auto;
    height: auto;
    padding:40px;  
    align-content: center;
    transition: transform .5s ease-in-out;
  }

.box2 img:hover {
  transform: rotate(4deg);
}