@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');
@import './_variables.css';
@import './components/_container.css';
@import './components/_cards.css';
@import './components/_links.css';
@import './components/_paragraphs.css';
@import './layout/_background.css';
@import './layout/_header.css';

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: var(--background-color);
    font-family: 'Jost', sans-serif;
}

#app-root {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#app-root #app {
    padding: 50px 0;
    height: 100%;
    width: 100%;
}


