* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;

    min-height: 100vh;
    max-height: 100vh;

    color: #333132;

    font-family: sans-serif;
}

main,
footer {
    margin: 1em;
}

main {
    display: flex;
    flex: 1;

    align-items: center;
    justify-content: center;

    font-size: 2rem;

    p {
        color: #808080;
        text-align: center;
    }

    .network {
        color: #68246d;
    }
}

footer {
    display: flex;
    justify-content: right;
    font-size: 1rem;
}

table {
    th {
        text-align: right;
        padding-right: 1rem;
    }
    td {
        padding-left: 1rem;
    }
    th, td {
        line-height: 1.5;
    }
}

@media(min-width: 601px) {
    main {
        font-size: 3rem;
    }
    footer {
        font-size: 1rem;
    }
}
