*, *::before, *::after {
    box-sizing: border-box;
}

html, body, div, span, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, img,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    font-size: 16px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-family: 'Noto Sans', sans-serif;
    font-variant-numeric: tabular-nums;

    line-height: 1.5;
    color: #444;

    background-color: #fff;

    overflow-wrap: break-word;
    word-break: normal;
}

a {
    color: #4E65B5;
    text-decoration: none;
}

a:hover, a:focus-visible {
    text-decoration: underline;
}

/* The element itself + all child elements inside the link */
a, a *, button, [role="button"] {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
    padding: 8px 14px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
    padding: 6px 8px;
    border: 1px solid #ccc;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input:focus, /* Required */
select:focus, /* Required */
textarea:focus { /* Required */
    outline: none;
}