/* CSS Document used for the homework2 assignment
Author: Grace Trombley
Course: ITWP 1050
File: styles.css
Assignment: Include CSS in an informational web page of your choosing
*/

/*this section makes a gradient background, and specifies line height and text alignment*/
body {
    text-align: center;
    background-image: linear-gradient(180deg, #FCB2B3, white);
    line-height: 20px;
}

/*i found this font on the Google Font link provided by the homework pdf*/
@font-face {
    font-family: MyFont;
    src: url(static/PlayfairDisplay-Medium.ttf);
}

/*this section gives special design to the header of the site, giving it a different font and a test shadow*/
h1 {
    font-family: MyFont, Arial, sans-serif;
    text-shadow: 2px 2px;
    letter-spacing: 2px;
    font-variant: small-caps;
    white-space: nowrap;
}
