body {
    background-image: url("images/brown-ish_red-background.jpg");
    background-size: cover;

    font-family:Georgia, serif;
    color: #2b1b14;

    margin: 20px;
}


header {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}


section {
      padding: 20px;
    margin-bottom: 20px;
}


/* This is a class selector */
.highlight {
    font-weight: bold;
}


footer {
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}


img {
    width: 350px;
    height: 280px;

    padding: 5px;
    margin: 20px auto;

    border: 2px solid #5c1f1f;

    box-sizing: border-box;

    /* Allows the entire image to show, without cutting it off */
    object-fit: fill;

    display: block;
}