@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --font-h1: 60px;
    --font-h2: 44px;
    --font-h3: 30px;
    --font-body: 17px;
    --font-caption: 12px;
    --font-button: 14px;
}

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}


