/* ==========================================================================
   Author's custom styles
   ========================================================================== */

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


html {
    width: 100%;
    height: 100%;
}

body {
    background-color: rgba(132, 138, 144, 0);
    padding: 0;
    min-width: 1026px;
    z-index: 10;
    overflow: auto;
    font-family: sans-serif;
}

#containerDiv {
    width: 1026px;
    display: block;
    margin: 0 auto;
}

#bgimg {
    position: fixed;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%; 
    background: url("../img/colgirardin2.jpg") center center no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

#centerDiv {
    display: inline-block;
    position: relative;
    float: left;
    clear: left;
    background-color: rgba(250, 250, 250, 0.76);
    width: 700px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 60px;
    padding-right: 60px;
    z-index: 21;
}

#photosDiv {
    display: inline-block;
    position: relative;
    float: left;
    width: 326px;
    box-sizing: border-box;
    z-index: 20;
    overflow: auto;
    padding-left: 20px;
}

/*.hSpacer {
    float: left;
    min-height: 1px;
    width: 5%;
}*/

.underliner {
/*    clear: both;
    float: left;*/
    margin: 0;
    display: inline-block;
    position: relative;
/*    padding-bottom: 3px;
*/}
.underliner:after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 0px;
    background: transparent;
    background-color: #6f6f6f;
    transition: width .5s ease, background-color .5s ease;
}