* { margin: 0; padding: 0; border: none; text-decoration: inherit; color: inherit; font: inherit; box-sizing: inherit; } html { box-sizing: border-box; font-family: sans-serif; text-decoration: none; height: 100%; } body { height: 100%; display: flex; flex-direction: column; justify-content: center; } .root { flex: 0 0; display: flex; flex-direction: column; margin: 0 auto; width: 100%; max-width: 50rem; background-color: #efefef; border: 1px solid #666; border-radius: 4px; } .header { flex: 0 0; display: flex; flex-wrap: wrap; /*justify-content: space-around;*/ align-items: center; border-bottom: 1px solid #666; } .main { padding: 1rem; } .main-logo { flex: 0 0; width: 10rem; margin: 1rem; } .stats { flex: 0 0 20rem; margin: 1rem; } .stat { display: block; } .stat-name { display: inline; font-weight: bold; } .button-list { flex: 0 0; display: flex; flex-wrap: wrap; justify-content: center; } .button { display: inline-block; border: 1px solid #666; padding: 0.3em 1em; margin: 1rem; }