/* /* CSS Homework 3
by: Rachel Lincoln
Class: ITWP 1050 V0851 2023WI
Working on spacings, justifications, text shadows, indents, and image
and background properties
*/

/*Adding Body for overall formating of site and added 2 imgages as a  background */
body{
    font-family: "urw chancery L", cursive;
    color:rgb(37, 36, 36);
    line-height: 35px;
    text-align:justify;
    text-indent: 20px;
    font-weight: 900;
    /*background-image: url(images/clouds.jpg), url(images/cloud5.jpg);
    background-repeat:no-repeat, no-repeat;
    background-size:contain, cover;
    background-color:rgb(162, 213, 255)*/
    /*using the background shorthand property for the bground info above*/
    background: url(images/clouds.jpg) center no-repeat, url(images/cloud5.jpg) bottom no-repeat;
    
}

/*Adding letter,word, line spacing to headings h1 and styling the heading*/
h1{
    letter-spacing: .2em;
    word-spacing: .5em;
    line-height: 46px;
    font-family: "lucinda sans unicode";
    text-transform:uppercase;
    font-weight:800;
    font-size:45px;
    color:rgb(255, 255, 255);
    font-style: oblique;
    text-align: center;
    text-shadow: 5px 0 20px rgb(204, 127, 255);
    
}

/*Adding letter, word, line spacing to heading h2 and styling heading 2*/
h2{
    letter-spacing: 5px;
    word-spacing: 1px;
    line-height: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: right;
    font-size: 20px;
    text-shadow:rgb(204, 127, 255) 5px 0px 10px;
    text-transform: uppercase;

}

/*styling <hr> to use color to add to the page*/
hr{
    color:rgb(0,110,255);
}

/* adding transparent background to paragraphs */
p{
    border: 1px solid rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.3);
    
    }

.p2{
    text-align: center;
    
}
