/* styles.css - Global styling en CSS variabelen */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    /* base variables */
    --primary-color: #443935;
    --secondary-color: #648f7b;
    --tertiary-color: #648f7b;

    --text-color: #d6d6d6;
    --bg-color: #648f7b;
    --font-family: "Archivo", sans-serif;

}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-behavior: smooth;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;

}

section{
    max-width: 1920px;
    width: 100%;
}