.page { width: 100%; height: 100%; flex: 1; display: flex; flex-flow: row nowrap; justify-content: space-between; align-items: flex-start; } .info { flex: 3; align-self: center; display: flex; flex-flow: column nowrap; justify-content: space-around; align-items: center; height: 100%; } .form { flex: 1; display: flex; flex-flow: column nowrap; justify-content: center; align-items: center; } .label { padding: 1em; text-align: center; } .players { flex: 1; display: flex; flex-flow: column nowrap; justify-content: flex-start; align-items: flex-start; border-left: 2px solid #777; height: 100%; padding-left: 1rem; } .join { display: flex; flex-flow: column nowrap; justify-content: space-between; align-items: center; margin-bottom: 1em; } @media only screen and (min-width: 600px) and (min-height: 600px) { .join { flex-flow: row nowrap; } } .name { border-radius: 0px; border: #666 solid 1px; background-color: #181a1b; color: #eee; padding: 0px 0.5em 0px 0.5em; margin-left: 2em; margin-right: 2em; height: 100%; } .error { height: 1em; text-align: center; }