﻿/* ===== Mini Reset ===== */

/* Box sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default margins and paddings */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dt, dd {
    margin: 0;
    padding: 0;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Set base line-height and font settings */
body {
    line-height: 1.1; /* можно подстроить под проект */
    font-family: Inter, Arial, sans-serif; 
    background: var(--color-bg);
    color: var(--color-text);
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default image styles */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Form elements reset */
input, button, textarea, select {
    font: inherit;
    margin: 0;
}

/* Tables reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
