body {
    background-color: gray;

    /* Center Content Horizontally */
    /* Children laid out in Flexbox layout system */
    display: flex;
    /* Stacks chidlren vertically */
    flex-direction: column; 
    /* Centers chidlren along horizontal axis */
    align-items: center;

    /* Center all text */
    text-align: center;
}

h1 {
    font-weight: bold;
}

img {
    max-width: 400px;
    height: auto;
    border-radius: 23px;
}

.p-red {
    color: red;
}

/* Creates a div around the photo and text that bounds the size */
.photo-container {
    max-width: 400px;
}
