body {
    background-color: seashell;
    color: silver;
    font-family: verdana, arial, sans-serif;
    /* margin-left: 40px; */
    /* margin-right: 40px; */
    /* margin-left: 15%; */
    /* margin-right: 15%; */
    /* the percentage is how much of the monitor it takes up */
}

/* CSS Rule
selector {
    property: value;
    property2: value1 value2 value3;
 */

h1 {
    text-align: center;
    /* text-transform: lowercase; */
    font-weight: normal;
    text-shadow: 0px 3px 2px #000;
    color: salmon;
    background-image: url(../images/wall.jpg);
    padding: 190px 0px;
    background-repeat: no-repeat;
    background-size: cover; 
    border: salmon
    /* keeps image from tiling and ensure image fills space */
    /* for padding, top/bottom and left/right */
    /* height: 400px; */
    /* x y blur color */
}

h2 {
    text-transform: uppercase;
    font-size: 1.2em;
    color: salmon;
}
/* control + / to auto add comment */

p {
    line-height: 1.4;
}

nav {
    background-color: salmon;
    color: seashell;
    text-align: center;
    word-spacing: 85px;
}

/* p::first-letter { */
    /* color: darkgrey; */
    /* font-weight: bold; */
    /* font-size: 220%; */
    /* float: left; */
    /* padding-right: 5px; */


article {
    
}

ul {
    list-style: square; /*bullet style: circle, square, discs, and none*/
    /* list-style-image: url(../images/cuskeel.jpg); */
}

/* li { */
    /* margin-bottom: 12px; */


/* li::before { */
    /* content:"/2022"; */
    /* color: purple */
    /* margin-right: 10px; */
    /* codes inc 2022, 2023, etc */
    /* TRY 2003 */

    footer {
        background-color: salmon;
        text-align: center;
        color: seashell;
    }