html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 400;
    background: #f7f9fa;
    color: #181819;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

a:link, a:visited {
    color: #1565c0;
    cursor: pointer;
}

a:link:hover,
a:visited:hover {
    color: #0091ea;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.05);
}

a:link:active,
a:visited:active {
    color: #311b92;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.05);
}

p {
    margin: 0 0 16px;
}

b, strong {
    font-weight: 500;
}

code, kbd, pre, samp {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 400;
}

i {
    font-weight: 400;
    font-style: italic;
}

dialog {
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    overflow-y: auto;
    overflow-x: hidden;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.35);
}

table, tr, td, th, thead, tbody, tfoot {
    padding: 0;
    margin: 0;
    border-spacing: 0;
    border-collapse: separate;
}
