body {
    background-image: url(../images/angelsRest.jpg);
    background-position: center;
    background-size:cover;
   
  }
   
  img, video{ /*Centers images/videos, adds shadow*/
    display: block;
    margin-left:auto; 
    margin-right: auto;
    filter: drop-shadow(20px 20px 10px rgb(212, 24, 128));
  }
  p,h3, h1{
  font-family: "verdana";
    font-size: 20px;
    text-align: center;
   color:cyan;
   text-shadow: 2px 2px 4px rgb(65, 5, 65);
  }
  .link{
    text-align: center;
    font-size: 35px;
    text-shadow: 4px 4px 5px rgb(235, 236, 233);
  }
  #flip{
    transform: rotate(180deg);
  }

  #spin{ /*This stuff below I referenced from outside sites, everything above is mine*/
    animation: rotation 6s infinite linear;

  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
