body {
    background-color: greenyellow;
    color: #234;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /* text-align: center; */
    margin-left: 40px;
    margin-right: 40px;
}

/*
CSS Rule ------------
selector {
    property: value;
    property2: value1 value2 value3
}
*/

h1 {
    text-align: center;
    text-transform: lowercase;
    font-weight: bold; 
    text-shadow: 0px 3px 15px black; /* x y blur color */
    background-image: url(../images/mountain.png.jpg);
    color: white;
    background-repeat: no-repeat; /* keeps image from tiling */
    background-size: cover; /* emnnsure the image fills the space */
    padding: 130px 0px; /* top bottom left right */
}

h2 {
    text-transform: uppercase;
    font-size: 1.2em;  
}

p { 
line-height: 1.4;
}

p::first-letter {
    color: purple;
    font-weight: bold;
    font-size:" 220%"; 

}

li {
    margin-bottom: 12px;
}


