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

html {
    font-size: 14px;
}

body {
    font-family: var(--font);

    background: var(--color-body);

    color: var(--color-text);

    line-height: 1.4;
}

h1 {
    font-size: 24px;

    margin-bottom: 10px;
}

h2 {
    font-size: 20px;

    margin-bottom: 8px;
}

p {
    margin-bottom: 8px;
}
