/*Ashley Agacinski - ITWP 1050 - Grimm's Fairy Tales: The story of Little Red Cap Homework 4*/ 

/*header transform property*/
h1 {
    transform: rotate(10deg) skew(10deg, 10deg) scale(1.5);
    text-align: center;
}
/*transition info*/
.transition:hover {
    transition-property: background-color;
    transition-duration: 1s;
    transition-delay: 0ms;
    background-color: #9c3939;
    text-align: center;
}
/*centering imgs*/
figure {
    text-align: center;
}


/*body styles */
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
    /* background gradient */
    background-image: linear-gradient(#faf6f6 , #cbc0c0);
    line-height: 200%;
}
/* universal text color  */
* {
    color: #DC143C;
  }
  /* footer margins */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  /* img style */
img {
    border: 15px solid #A9A9A9; 
    border-radius: 30px;
  }
/* adding external link */
.a::after {
    content: "(external)";
    color: black;
}
/* background gradient for imgs */

/* custom font */
@font-face {
    font-family: myFirstFont;
    src: url(GloriaHallelujah-Regular.ttf);
  }
/* h1 header style */
h1 {
    font-family: myFirstFont, Arial, sans-serif;
    text-shadow: 3px 3px 0px #6a0d0d;
    letter-spacing: 2px;
    font-variant: small-caps;
    white-space: nowrap;
  }