body {
    margin:10px;
    font-family: Arial, sans-serif;
    background-color:#b2c2ef;
}

h1 {
    text-align:center;
    font-size: 2.5em;
}

nav {
    text-align:center;
}

footer {
    text-align:center;
}
p, div {
    margin: 10px;
    padding: 20px;
    line-height: 1.5em;
}

/* resposive image class */

.responsive {
    display:flex;
    justify-items:center;
    justify-content:center;
    width:auto;
    max-width:100%;
    max-height:50vh;
    border: 1px solid #51471A;
    border-radius: 10px;
    margin:auto;
}

td.price {
    white-space: nowrap;
}

td.specialty {
    white-space: nowrap;
}

/* ID */
#disclaimer {
        font-weight:bold;
}

#attribution {
        font-size:0.75em;
}

/* media query that hides the image when the screen size is @ 550 pixels or lower*/

@media only all and (max-width: 550px) {
    img {
        display: none;
    }
}

