/* CSS rules
selector {
    property: value;
    property2: value 1 value 2 value 3;
} */
nav {
    
    border: 3px solid #EEE;
    margin-top: 40px;
    padding: 12px;
    text-align: center;
}

body {
    background-color: rgba(6, 70, 17, 0.651);
    color: #234;
    /* text-align: center; */
    margin-left: 15%;
    margin-right: 15%;
}

h1 {
    text-align: center;
    font-weight: bold;
    color: #eee;
    text-shadow: 3px 5px 7px #000; /* x y blur color */
    background-image: url(../images/GodsThumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0px;
}

h2 {
    font-size: 1.2em;
    color: #345;
}

p {
    line-height: 1.4;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 12px;
}

li::before {
    content: "\1994";
    color: red
}

footer {
    border-top: 2px solid #EEE;
    margin-top: 80px;
    
}