head header#masthead figure#mastheadFigure {
    /*TODO: can't get this to work, why?*/
    text-align: center;
    background-color: red;
    margin-right: 10px;
}

#masthead #mastheadIcon {
    border-radius: 50%;
    border: 1px solid black;
    padding: 1px;
    margin-left: 2px;
    background-color: gold;
}

div#dropdownMenuArea.mobile-view {
    background-color: black;
}

div#dropdownMenuArea.expanded-view {
    background-color: black;
	height: 210px;
}

nav.expanded-view ul li a {
    text-decoration: none;
    color: gold;
}

#masthead span {
    color: #FF4F2F;
}

#artwork {
    text-align: center;
}

/*12/2/18*/
main #content button{
    padding: 5px;
    border-radius: 5px;
    float: right;
}

.hide{
    display:none;
}

.show{
    display: block;
    background-color: pink;
}

#reloadBtn{
    display: none;
}

canvas#canvasOne {
    cursor: pointer;
    margin-top: 20px;
    width: 300px;
    height: 300px;
    padding: 5px;
    border: 2px solid #bbb;
    border-radius: 20px;
    margin-bottom: 20px;
}

details {
    margin-bottom: 30px;
}


#shapes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#shapes figure {
    width: 100px;
    text-align: center;
    background-color: gold;
    margin-left: 2%;
    margin-bottom: 2%;
}

#shapes figure img {
    width: 100%;
    height: auto;
}

#shapes figure figcaption {
    font-size: 12px;
    padding: 2px;
}

/*------MEDIA QUERIES-------*/

/*gray band*/
@media (min-width: 200px) {
    #masthead #mastheadText h1 {
        font-size: 17px;
    }

    #masthead #mastheadText p {
        font-size: 16px;
    }

}

/*black band*/
@media (min-width: 400px) {
    #masthead #mastheadText h1 {
        font-size: 21px;
    }

    #masthead #mastheadText p {
        font-size: 17px;
    }

    canvas#canvasOne {
        width: 375px;
        height: 375px;
    }
}

/*red band*/
@media (min-width: 600px) {

    /*removes additional prefix header from root-level pages*/
    header #mastheadText p::before {
        content: "";
    }

    canvas#canvasOne {
        width: 500px;
        height: 500px;
    }
    
    #reloadBtn{
        display: block;
    }
}

/*end red band*/

/*blue band*/
@media (min-width: 800px) {
    canvas#canvasOne {
        width: 600px;
        height: 600px;
    }
    main {
        padding-left: 15%;
        padding-right: 15%;
    }
}

/*end blue band*/

/*green band*/
@media (min-width: 1200px) {
    main {
        padding-left: 15%;
        padding-right: 15%;
    }
}

/*end green band*/

/*orange band*/
@media (min-width: 1400px) {
    
}

/*end orange band*/

/*gold band*/
@media (min-width: 1600px) {

    /*large desktop mac*/
    header {
        border-bottom: 5px gold solid;
    }
}

/*end gold band*/
