/* Michael Bret Blackford 2018  */
/* Oct 9, 2018                  */



body {
    background-color: ivory;
    margin-left: 5%;
    margin-right: 5%;
    border: 2px dotted black;
    padding: 3px 3px 3px 3px;
    font-family: sans-serif;
}

#myimage {
    width: 700px;
}

ul.navigation-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #006AA7;
    font-size: 150%;
    /* TEST */
}

@media screen and (max-width: 600px) {

    navigation-list li.right,
    navigation-list li {
        float: none;
    }
}

li.nav-list-style {
    float: left;
}

li.nav-list-style a,
.dropbtn {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 150%;
    /* TEST */
}

/* use black (#111) */
li a:hover:not(.active) {
    background-color: #4893e8;
}

.active {
    background-color: yellow;
}

li.nav-list-style .active {
    color: #006AA7;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}

h1 {
    color: #006AA7;
    background-color: yellow;
    font-weight: bold;
    background-image: linear-gradient(to left, blue, lightblue, lightyellow, yellow);
}

h3 {
    background-color: yellow;
    color:black;
    padding-left: 1rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.photoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    grid-gap: 20px;
    align-items: center;
}

.photoGrid img {
    border: 1px solid #ccc;
    box-shadow: 3px 3px 6px 0px rgba(68,68,68,0.6);
    max-width: 100%;
}

button {
    margin: .5em;
    float: right;
    padding: 2px;
    background-color: blue;
    color: yellow;
}
button:hover{
    background-color: yellow;
    color: blue;
}