/* Sets the background color and default font for the entire page */
body {
    background-image: url('Pictures/stockphoto.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
}

/* Styles all <h1> headers */
h1 {
    color: #333;
    text-align: center;
}

/* Styles all paragraph text */
p {
    color: #111;
    font-size: 18px;
}