    * {
    font-family: Helvetica;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-size: 18px;
    line-height: 1.5;
    background-image: url("../../assets/images/light_grey_@2X.jpg");
    color: #777777;
    margin-bottom: 60px;
}


/*Navbar Styling*/

.navbar-right {
    padding-top: 20px;
}

.navbar {
    border-bottom: 4px solid #dddddd;
}

.navbar-header {
    background: #4aaaa5;
    padding-left: 10px;
    padding-right: 10px;
    animation-name: example;
    animation-duration: 4s;
}

.navbar-default .navbar-brand {
    background: #4aaaa5;
    color: white;
    font-family: 'Georgia', Times, Times New Roman, serif;
    font-size: 35px;
    font-weight: 700;
    height: 80px;
    padding-top: 40px;
}

.navbar-default .navbar-nav>li>a:hover {
    color: #4aaaa5;
}

h1 {
    font-family: 'Georgia', Times, Times New Roman, serif;
    font-weight: 700;
    color: white;
    padding: 0;
    font-size: 32px;
}


/*End Navbar Styling*/


/*Body Content styling*/

h2 {
    font-family: 'Georgia', Times, Times New Roman, serif;
    font-weight: 700;
    color: #4aaaa5;
    padding-left: 20px;
}

div.col-md-8 {
    background: #ffffff;
    margin-bottom: 30px;
}


/*center image on resize*/

img {
    margin-left: auto;
    margin-right: auto;
}


/*Connect With me panel styling*/

.panel-title {
    color: #666666;
}

.col-md-4 {
    margin-bottom: 30px;
}

#github {
    clear: both;
    width: 50px;
    height: 50px;
}

#linkedin {
    width: 50px;
    height: 50px;
}

#stackoverflow {
    width: 50px;
    height: 50px;
}


/*End Body Content styling*/


/*Styling for contact page*/

.btn-default {
    background: #4aaaa5;
    padding: 10px 20px 10px 20px;
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

input::placeholder {
    font-size: 16px;
}

.form-control {
    font-size: 16px;
}


/*End Styling for contact page*/


/*Sticky Footer*/

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #777777;
    border-top: 4px solid #4aaaa5;
    animation-name: example;
    animation-duration: 4s;
}

.container {
    width: auto;
    max-width: 960px;
    padding: 0 15px;
}

.text-muted {
    color: white;
    text-align: center;
    padding-top: 18px;
}


/*End Sticky Footer*/

/*Annimation*/

@keyframes example {
    from {
        background-color: #4aaaa5;
    }
    to {
        background-color: #bf5b94;
    }
