#title-box {
    position: fixed;
    /*Keeps the box in place*/
    top: 0;
    /*aligns the box with the top edge of its container (the browser window)*/
    left: 0;
    /*aligns the box with the left edge of its container (the browser window)*/
    z-index: 1;
    /*This makes the box appear on top of #content's paragraph text*/

    width: 100%;
    height: 10rem;

    font-family: Merriweather, serif;
    text-align: center;
    color: white;
    background-color: #0450C3;
}

#content {
    position: absolute;
    /*This lets us position the div relative to the parent div, which we do with the 'top' property below*/
    top: 10rem;
    margin: 0 5rem;
    padding-bottom: 5rem;
}

p {
    font-size: 1.5rem;
    font-family: "Merriweather Sans", sans-serif;
}

#page-container {
    height: 100%;
}

img {
    object-fit: cover;
    width: 100%;
    height: 1280
}