body { /* default spacing */ 
	width:100%;
	padding:0;
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color: #a6a6a6; /* dk br #594A42;  lt br #C4A484; dr blue #002b5a; ...should just use LESS or SCSS and use mixins  */
}

.container { /* everything is horizontally & vertically centered */
    display: flex; 
    align-items: center; /* Vertically center items */
    justify-content: center; /* Horizontally center items */
    /* xheight: 58vh;  100vh Set the height of the container to fill the viewport */
}

.header-name {
    font-size: 160pt; 
    font-weight: bold; 
    letter-spacing: normal; 
    line-height: 100%;
    color: #ccc;
    padding: 0px 0 18px 18px; 
    opacity: 50%;
}

.footer-container {
    text-align: center;
    bottom: 0px;
    position: fixed;
    width: 100%;
    font-size: 0.9em;
}

.email, .email a:link {
    text-align: right; 
    position: relative; 
    padding: 4px 10px 6px 0;
    color: #594A42;
    text-decoration: none;
    background-color: white;
    display: flex; 
    justify-content: flex-end;
}

.email a:hover {
    text-decoration: underline;
    color: #a6a6a6;
}

.copyright {
    border-top: 1px solid #dee2e6;
    padding: 14px 0 14px 0;
    background-color: #fff;
    color: #a6a6a6;
}

.last-update {
    padding: 6px 0 14px 0;
    font-size: 0.8em;
    color: #dcdcdc;
    background-color: #fff;
}

/** end footer **/

.img-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 50%;
}

.profile-pic {
   width: 12%; 
   display: flex; 
   padding: 20px 0 20px 40px; 
}

.flex-container {
    display: flex;
    flex-flow: row wrap;
}


.subheader {
    color: #011b35;
}

.title {
    color: #C4A484;
    padding-top: 14px;
}

.text {
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: #a6a6a6;
}

.container-skills {
    width:32%;
    padding: 2px 20px 20px 20px; 
    text-align:right; 
}

.container-experience {
    width:58%; 
    padding: 2px 20px 20px 20px; 
    margin-bottom: 100px;
    text-align:left;
    border-left: 1px solid #dee2e6; 
}

hr {
    border-top: 1px solid #dee2e6;
}

/**** portfolio gallery ****/
.portfolio-container {
    margin-bottom: 20px;
    overflow: auto;
    overflow-y: hidden;
    white-space: nowrap;
    height: 270px;
}

.thumbnail {
  display: inline !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}