/*Ashley Agacinski - ITWP 1050 - Grimm's Fairy Tales: The story of Little Red Cap*/ 

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 {
    justify-content: center;
    border-radius: 30px;
/*addition of responsive img*/
    max-width: 100%;
    height: auto;
  }
/* adding external link */
.a::after {
    content: "(external)";
    color: black;
}
/* background gradient for imgs */
figure {
    background-image: linear-gradient(to right, #fa6f6f, #d6cccc);
}
 /*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 #9c3939;
    letter-spacing: 2px;
    font-variant: small-caps;
    white-space: nowrap;
  }
/*media 800px or less*/
@media only screen and (max-width: 800px) {
h1 {
    font-size: 3em;
}
  }
/*media 600px or less*/
@media only screen and (max-width: 600px) {
* {
    background-color:#ffe4e1;
}
}
/*responsive section w/ 5 items*/
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffe4e1;
    padding: 1em;
}