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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: var(--font-family);
    line-height: 1.5;

    color: var(--color-text);
    background: var(--color-background);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

input,
select,
textarea {
    width: 100%;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);

    padding: 10px 12px;

    background: #fff;
    color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-primary-light);
    border-color: var(--color-primary);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}