html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'sans-serif';
    font-weight: 400;
}

body {
    position: relative;

    display: flex;
    display: -webkit-flex;
    display: -moz-flex;

    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;

    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;

    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
}

.top {
    background-color: #fffff;
}

.bottom {
    width: 100%;
    background-color: #110535;
}

.top,
.bottom {
    flex:1 0 auto;
    -webkit-flex: 1 0 auto;
    -moz-flex: 1 0 auto;
}

.content-container {
    position: relative;
    width: 100%;
    background-color: #110535;

    display:flex;
    display: -webkit-flex;
    display: -moz-flex;

    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;

    flex: 0 0 auto
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
}

.content-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 100%;
    height: 92px
}

@media only screen and (max-width:360px) {
    .content-container:before {
        height: 76px
    }
}

.content {
    position: relative;
    padding: 24px;
    width: 300px;
    color: rgba(255, 255, 255, .8);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 24px;
    line-height: 32px;
}

.content a {
    border-radius: 4px;
    display: inline-block;
    padding: 8px;
    position: relative;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    z-index: 0;
}
.content a:hover {
    background-color: #423D54;
}

span.line {
    width: 280px;
    text-align: center;
    margin: 16px auto
}

@media only screen and (max-width:360px) {
    .content span {
        margin: 8px
    }
}

div.profile-pic {
    width: 128px;
    height: 128px;
    background: url(../images/raju.jpg);
    /* Used to fill color during onload */
    background-color: #fff;
    background-size: cover;
    border-radius: 50%;

    align-self:center;
    -webkit-align-self: center;
    -moz-align-self: center;

    border: 4px solid #fff
}

/* Decrease profile pic size for small screen */
@media only screen and (max-width:360px) {
    div.profile-pic {
        width: 96px;
        height: 96px
    }
}

div.icons {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;

    flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;

    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}

.icons div {
    width: 32px;
    height: 32px;
    padding: 8px
}

div.github {
    background-image: url('../images/github.png');
}
div.stackoverflow {
    background-image: url('../images/stackoverflow.png');
}
div.twitter {
    background-image: url('../images/twitter.png');
}
div.google-plus {
    background-image: url('../images/google-plus.png');
}
div.linked-in {
    background-image: url('../images/linkedin.png');
    background-size: 52px 52px;
    background-repeat: no-repeat;
}
