

* {   /* reset everything to zero */
    margin: 0;
    padding: 0;
    border: none;
    border-spacing: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Grande', Helvetica, Arial, Verdana, sans-serif;
    font-size: 100%;        /* 100% = 16px font-size  */
    line-height: 1.4;
    background-color: #000000;
    color: #ffffff;
}
/*div { border: 1px solid white; }*/

.wrapper {
    max-width: 80%;
    margin: auto;
}

h2, footer {
    margin: 20px 0 30px 0;
}
h3 {
    margin-top: 30px;
    text-transform: uppercase;
    font-size: 150%;
}
p {
    margin: 20px 0 20px 0;
}
li {
    margin-left: 30px;
}
td {
    padding-bottom: 10px;
}
code {
    font-family: 'Lucida Console', 'Courier New', monospace;
    display: block;
    overflow: hidden;
    padding: 4px 30px;
    background-color: #eeffcc;
    color: #333333;
    border-top: 1px solid #aacc99;
    border-bottom: 1px solid #aacc99;
}

/* Lighten dark link text for black background. */
a { color: Aqua; }
a:visited { color: MediumPurple; }
.home_button {
    display: block;
    width: 30px;
    height: 30px;
    float: right;
    margin-right: 4em;
}
#FruitBot_logo {
    display: block;
    position: relative;
    top: -15px;
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 1em;
}
.home_button path { fill: white; }

.gallery {
    margin-top: 3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery p {
    line-height: normal;
}

/* Browser windows display all the images that will fit for each row. */
.photo_block {
    display: inline-block;
    margin: 0 10px 20px 10px;
    max-width: 200px;
    text-decoration: none;
    color: #ffffff;
}

.photo_right {
    float: right;
    margin: 10px 10px 10px 20px;
    max-width: 200px;
    text-decoration: none;
    color: #ffffff;
    font-style: italic;
}
.photo_right img {
    display: block;
    max-width: 100%;
}

@media screen and (max-width: 760px) {
    /* 1024x768 is original iPad resolution */
    /* 3-column layout in small windows */
    body { margin: 2%; font-size: 12px; }
    .photo_block { width: 28%; }
    .wrapper {
        max-width: 100%;
        margin: auto;
    }
}

@media print {
    body {
        background-color: #ffffff;
        color: #000000;
    }
    a { color: Black; }
    a:visited { color: Black; }
    .home_button path { fill: Black; }
    .photo_block { width: 160px; }
}

.gallery p { 
    margin: 8px 0 16px 0; 
    padding: 0;
}

.gallery img {
    border: none;
    max-width: 100%;
    max-height: 200px;
    display: block;
    margin: auto;
    background: #ccc;
    transition: transform .2s ease-in-out;
}

footer {
    margin: 10px 0 0 20px;
}
