*, *:before, *:after { box-sizing: border-box; } body{ font-size: 16px; } .card { min-height: 100px; padding: 20px; border-radius: 3px; background-color: white; box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); position: relative; overflow: hidden; margin: 0 auto; width: 500px; } .card-body{ display: flex; align-items: center; justify-content: center; } .card-avatar{ border: 2px solid #000; border-radius: 50%; height: 120px; width: 120px; position: relative; } .card-avatar img{ border-radius: 50%; height: 100%; width: 100%; position: absolute; } .card-info{ padding-left:20px; } .card-info h1{ font-size: 1.8em; } .card-info h3{ font-size: 1.2em; font-style: italic; } .card-bio{ padding: 10px 0px; } #repos li{ background: #FFF; padding: 20px; border: 1px solid #CCC; color: #666; border-top: 9px solid #39D1B4; margin-bottom: 10px; }