* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-1: #0059AA;
    --color-2: #003769;
    --color-white: #FEFEFE;
    --font-title: "Inter", sans-serif;
    --title-size: 36px;
    --title-weight: 700;
    --font-text: "Inter", sans-serif;
    --text-size: 16px;
    --text-weight: 300;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    overflow-x: hidden;
}

p {
    font-family: var(--font-text);
}

.nl_title {
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    display: flex;
    font-family: var(--font-title);
    flex-direction: column;

    &::after {
        content: '';
        margin-top: 10px;
        height: 2px;
        width: 100%;
    }
}

h1 {
    font-family: var(--font-title);
    font-size: var(--title-size);
    font-weight: var(--title-weight);
}