@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

@import url('main.css');
@import url('header.css');
@import url('hero.css');
@import url('benifits.css');
@import url('download.css');

* {margin: 0;}
body {
    font-family: 'Inter', sans-serif;

    background-color: #000;
    color: #fff;

    --border: #414141;
    --red: #fe0000;
    --red-tint: #960000;
}

section {display: grid; place-items: center; margin-top: 20px;}
.maxwidth {width: min(1000px, 100%); box-sizing: border-box;}