html, body {
    height: 100%;
}
body {
    margin: 0;
    color: #444;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
}

* {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.bgCoverElement {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bgCoverElement::before{
    position: absolute;
    display: block;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: scale(1.25);
    background: #000 url("../img/b6.webp") no-repeat fixed center center;
    background-size: cover;
    -webkit-filter: blur(10px); /* Safari 6.0 - 9.0 */
    filter: blur(10px);
}


.flex-container {
    position: relative;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    min-height: 100%;
}


.mainCard{
    position: relative;
    background-color: rgba(247, 247, 247, .9);
    box-shadow: 0 0 0.75em rgba(0, 0, 0, 0.5) ;
    border-radius: .3em;
    z-index: 0;
    min-width: 26em;
    margin: 4em;
    cursor: default;
}

.cardHeader{
    position: relative;
    margin-top: 3em;
    width: 100%;
    text-align: center;
    overflow: hidden;

}

.cardHeader::before{
    position: absolute;
    content: '';
    display: block;
    left: -5.5em;
    top: 50%;
    width: 48%;
    height: 0.075em;
    background-color: rgba(0, 0, 0, 0.25);

}

.cardHeader::after{
    position: absolute;
    content: '';
    display: block;
    right: -5.5em;
    top: 50%;
    width: 48%;
    height: 0.075em;
    background-color: rgba(0, 0, 0, 0.25);

}

.cardContent{
    position: relative;
    margin: 1em 4em 3em 4em;
}

.face{
    position: relative;
    display: inline-block;
    width: 10em;
    height: 10em;
    border-radius: 100%;
    box-shadow: inset 0.025em 0.025em 0.25em rgba(0, 0, 0, 0.5);
    overflow: hidden;

}

.face img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cardName{
    text-align: center;
    font-weight: 300;
    font-size: xx-large;
    line-height: 0.9em;
}

.cardName > a.ipa{
	font-weight:100;
	font-size: medium;
	display: block;
	padding-top: -0.5em;
	text-decoration: none;
	color: rgb(68, 68, 68);
}

.cardName > a.ipa:hover{
	color: rgba(0, 116, 91, 0.75);
}

.cardName > a.ipa:active{
	outline: none;
}

.cardTitle{
    margin-top: 1em;
    text-align: center;
    font-weight: 400;
    font-size: large;
}

.cardField{
    text-transform: uppercase;
    font-weight: 200;
    font-size: 1.25em;
}


.socialMedia{
    display: block;
    position: relative;
    margin-top: 1em;
    font-size: xx-large;
}

.iconButton{
    font-family: FontAwesome, sans-serif;
    text-decoration: none;
    position: relative;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    line-height: 2em;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    border: 0.025em solid rgba(0, 0, 0, 0.5);
    color: rgba(0, 0, 0, 0.5);
    transition: all .25s;
    cursor: pointer;
    outline: none;
    margin: 0.25em;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.iconButton * {
    border: 0;
    margin: 0;
    padding: 0;
}

.iconButton:hover{
    border: 0.025em solid rgba(0, 116, 91, 0.75);
    color: rgba(0, 116, 91, 0.75);
}

.iconButton:active{
    position: relative;
    transform: scale(0.95);
    outline: none;
}



@media only screen and (orientation: portrait) {
    .flex-container{
    }
    .mainCard{
        min-width: 0;
        width: 100%;
        margin: 1em;
    }
    .cardContent{
        margin: 1em 4em 3em 4em;
    }


}
