/* 
Jordan Winburn
ITWP1050
Homework 3 - I've chosen to write about Weezer's upcoming tour and new album.
*/

@font-face {
  font-family: specialH1;
  src: url(ArchivoBlack-Regular.ttf);
}

@font-face {
    font-family: specialBody;
    src: url(ComicRelief-Regular.ttf)
}


/*This will control our gradient.*/
html {
    background-image: linear-gradient(to bottom, white, white, black);
}

/*This will center the header and add the assignment-required properties.*/
h1 {
    font-family: specialH1, Impact, sans-serif;
    text-shadow: 2px 2px 30px black;
    letter-spacing: 5px;
    font-variant: small-caps;
    white-space: nowrap;
    text-align: center;
}

/*Change the body container's text properties, and add the assignment-require property.*/
body {
    font-family: specialBody, Arial, sans-serif;
    line-height: 35px;
}

/*Center-align the footer.*/
footer {
    font-family: Impact, Arial, sans-serif;
    text-align: center;
}

/*This will make the top image fit the way we'd like by resizing it and centering it.*/
#mainPic {
    width: 800px;
    height: 400px;
    display: block;
    margin: auto;
}

/*This will center the picture of Rivers.*/
#rivers {
    width: 400px;
    height: 200px;
    display: block;
    margin: auto;
}

/*This will add a stylish background image to the paragraphs.*/
#textCont {
    background-image: url(paperbackground.webp);
}