@import './reset.css';
@import './container.css';
@import './header.css';
@import './text.css';
@import './footer.css';
@import './hero.css';

:root {
    --font-family: "Source Sans Pro", arial, sans-serif;
    ;
    --text-size-default: 16px;

    --color-main-black: #000;
    --color-main-white: #fff;

    --br-sm: 640px;
    --br-md: 768px;
    --br-lg: 1024px;
    --br-xl: 1280px;
    --br-2xl: 1536px;

    --content-size-sm: var(--br-sm);
    --content-size-md: var(--br-md);
    --content-size-lg: var(--br-lg);
    --content-size-xl: var(--br-xl);
    --content-size-2xl: var(--br-2xl);

    --header-size: 64px;
    --hero-height: 75vh;
}

*,
:before,
:after {
    box-sizing: border-box;
}

html {
    font-family: var(--font-family);
    font-size: var(--text-size-default);
    line-height: 1.2;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.2;
    color: var(--color-main-white);
    background-color: #161616;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.main::before {
    max-height: var(--hero-height);
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url("../../public/images/hero.webp");
    width: 100%;
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
