
/* GENERAL */

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

body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans',Helvetica,Arial,sans-serif;
    color: #607D8B;
    background-color: white;
}

/* TEXT */

h1,
h5{
    margin: 20px 0 35px;
    font-family: 'Open Sans',Helvetica,Arial,sans-serif;
    font-weight: 300;
    text-align:center;
    color: #607D8B;
}

h1 span {
    color: #0277bd;
}

a {
    color: #0277bd;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #0277bd;
    opacity: 0.6;
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    /*padding: 100px 0;*/
    text-align: center;
    background-color: transparent;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}


@media(min-width:768px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .name {
        font-size: 5em;
    }
 
    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}

.backdrop {
    background-size: cover;
    height: 99%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}


/* IMG AND SOCIAL ICONS */

#social {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.inline-icon  {
    padding-right: 10px;
    padding-left: 10px;
}

.socialicon .fa {
    color: #607D8B;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 2em;
}

.socialicon .fa:hover, 
.socialicon .fa:focus{
    opacity: .7;
    transition: all .2s ease-in-out; 
    transform: scale(1.2);
}


.img-responsive.img-circle{
    width: 20em;
    border-radius: 100%;
    border: 1px solid #607D8B;
    display: block;
    margin: 0 auto;
}

@media(max-width:768px) {

    .intro {
        padding-top: 2em;
        padding-bottom: 1em;
        padding-left: 2em;
        padding-right: 2em;
    }


    h1{
        font-weight: 300;
    }

    h5{
        font-weight: 500;
    }

    .img-responsive.img-circle{
        width: 50%;
        border: 2px solid #607D8B;
    }
    .socialicon .fa {
        color: #607D8B;
        padding-top: 5px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: 1em;
    }

}

