/* flex config for childs */
#container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
          overflow-x: scroll;
/*
    flex-direction: row;
    flex-grow: ;
    align-content: flex-start;
*/
}

.hcontainer {
    display: flex;
/*    flex-direction: row;*/
/*    justify-content: space-evenly;*/
/* separate menu element from container horizontally */
/*    overflow-x: auto;*/
    align-items: center;
/* horizontal OR vertical */
/*    flex-wrap: wrap;*/
    flex-grow: ;
    :-webkit-scrollbar {display: none;}
}

/* outline container: 
#container {
    border: 1px solid rgb(250, 1, 1);
} */
/* container borders white */
#container div {
    width: ;
    height: 45vh;
    background: yellow;
    border-color: green;
    border-width: 10px 10px;
    border-style: solid;
}
/* fit image to container - Large Screen - HORIZONTAL SCROLL */
.hcontainer img {
    max-width: 100vw;
    max-height: 90vh;
/*    max-width: ;*/
    object-fit: cover;
/*    vertical-align: bottom;*/
    margin-left: 10vh;
    margin-top: 2vh;
    margin-bottom: 2vh;
}


/* display config for SMALL screens */
@media screen and (max-width: 45em) {
/*
    .outer-wrap {
        display: flex;
        flex-direction: column;
    }
    .content {
        display: flex;
    }
    .main-area {
        flex: 1 1 auto;
    }
*/
    .hcontainer {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hcontainer img {
        max-height: 80vh;
        max-width: 94vw;
        margin-left: 0vh;
        margin-right: 0vh;
        margin-top: 0vh;
        padding: 5vh;
    }
    .example-menu {
        display: none;
    }
}

/* base styles */
/* top black bar next */
.main-menu {
	padding: 0em;
	color: ;
	background: purple;
}

.sidebar {
	padding: 0em .5em;
/*	background: hsl(0, 0%, 100%);*/
    flex 0 0 8em;
    min-width: 10em;
    position: fixed;
    display: block;
}

/* sidebar menu styles */
.example-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.example-menu a {
	display: block;
/*    position: fixed;*/
	padding: 0.1em 0em;
	color: inherit;
	text-decoration: none;
	transition: all 0.8s ease;;
}

.example-menu a:hover,
.example-menu a:focus {
	padding: .4em 1em;
	background: hsl(210, 20%, 70%);
	color: white;
}

/* typography */
body {
	color: #404040;
	font-family: 'HelveticaNeue-Light', Arial, sans-serif;
    font-size: .75em;
	line-height: 1.5;
    height: 100%;
}

/*style header name text to fade*/
h4:hover,
h4:focus {
    padding: 0em 0em;
    color: hsl(210, 20%, 70%);
    text-decoration: overline;
    transition: all 2s ease;
} 

.footer-area {
	padding: 0.3em 0.3em;
    margin-right: 1em;
    bottom: 0;
    right: 0;
    position: absolute;
/*	background: hsl(0, 0%, 100%);*/
    font-size: 1.3em;
    color: darkcyan;
}

/* remove pointer right click */
img {
   pointer-events: none;
} 
/* remove link style */
a {
    color: inherit;
    text-decoration: none;
} 


.masthead {
    position: fixed;
    top: -1vh;
    right: 1vw;
}
/*
.wrapper {
    width:100vw;
}
*/
