.displayImage {
    min-height: 100px;
    min-width: 100px;
    max-width: 100%;
    max-height: 800px;
    border: 1px solid #666;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.container.display {
    align-items: center;
    width: 700px;
    padding: 20px;
    text-align: center;
}

.container.stretchDisplay {
    /* like a .container.display */
    /* but if its children want to take up more horizontal space */
    /* it widens */
    align-items: center;
    max-width: 100%;
    padding: 20px;
    text-align: center;
    
}

.displayModel {
    min-height: 400px;
    min-width: 100px;
    max-width: 100%;
    max-height: 800px;
    border: 1px solid #666;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.container.paragraph {
    align-items: center;
    width: 700px;
    padding: 20px;
    text-align: justify;
    text-justify: inter-word;
}
.container.paragraph p {
    color: #fff;
    margin-bottom: 20px;
}
.container.paragraph h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5em;
}
.container.paragraph p:last-child {
    margin-bottom: 0;
}