/* Import variable font */
@font-face {
    font-family: 'Nohemi';
    src: url('assets/fonts/Nohemi/Variable-TT/Nohemi-VF.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* CSS Variables */
:root {
    --background-colour: #FE2F01;
    --colour-primary: #FE2F01;
    --colour-dark-1: #010101;
    --colour-light-1: #fff;
    --font-family: 'Nohemi', sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 100%; /* Set base font size for rem units */
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font-family);
    background-color: var(--background-colour);
    color: var(--colour-dark-1);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

nav {
    z-index: 15;
}