@import url(https://fonts.googleapis.com/css?family=Roboto:900,300);

body {
    background-color: #ffffff;
    font-family: roboto;
}

.profile-container {
    min-height: 225px;
    margin: 60px auto 25px;
    background-color: #fff;
    padding: 0 20px 20px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075);
    text-align: center;
}

.profile-container:hover .avatar-flip img:first-child {
    opacity: 0;
}

.profile-container:hover .avatar-flip img:last-child {
    opacity: 1;
}

.avatar-flip {
    border-radius: 100px;
    overflow: hidden;
    height: 110px;
    width: 110px;
    position: relative;
    margin: auto;
    top: -60px;
    box-shadow: 0 0 0 13px #ffffff;
    -webkit-box-shadow: 0 0 0 13px #ffffff;
    -moz-box-shadow: 0 0 0 13px #ffffff;
}

.avatar-flip img {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

h4 {
    font-size: 13px;
    color: #00baff;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    color: #666;
}
