@font-face {
    font-family: 'Franklin Gothic';
    font-style: normal;
    font-weight: 400;
    src: local('Franklin Gothic'),
    url('https://fonts.cdnfonts.com/s/14900/Franklin Gothic Condensed.woff') format('woff');
}

:root {
    --color-yellow: #ffff00;
    --color-gray: #383838;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-blue: #0164C9;
    --font-primary: 'franklin-gothic', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Uso das fontes */
body {
    font-family: var(--font-primary);
    color: var(--color-white);
    background: var(--color-gray);
}

h1, h2 {
    color: var(--color-yellow);
}

h3, h4, h5, h6, p, span, div {
    color: var(--color-white);
}