html, body {
    height: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
}

h2, h3, label {
    color: antiquewhite;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button {
    background: none;
    display: inline-block;
    padding: 0.35em 1.2em;
    border: 0.1em solid antiquewhite;
    border-radius: 0.12em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    color: antiquewhite;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

button:hover {
    color: #000000;
    background-color: antiquewhite;
}

@media all and (max-width: 30em) {
    button {
        display: block;
        margin: 0.4em auto;
    }
}

.start-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: darkslategrey;
}

#welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login-form {
    display: flex;
    flex-direction: column;
}

#login-form > * {
    margin-top: 10pt;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 400pt;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20pt 0;
}

main {
    padding: 5pt 20pt;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.person-section {
    padding: 10pt;
    display: flex;
    width: 100%;
    min-height: 30pt;
    margin: 1pt 0;
    flex-direction: column;
    border: turquoise 2pt dashed;
}

.person-section .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.person-card {
    min-width: 10pt;
    border-radius: 10pt;
    padding: 5pt;
    margin: 5pt;
    text-align: center;
}

.navigation {
    margin: 1pt 0;
    min-height: 30pt;
    padding: 20pt;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.navigation button {
    margin: 0 5pt;
}

