* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--color-white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(44px, 6vw, 72px);
}

h2 {
    font-size: clamp(34px, 4vw, 52px);
}