html {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;

    scroll-behavior: smooth;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
		-moz-box-sizing: inherit;
			box-sizing: inherit;
}

/* Initialise basic styles */

body {
    font-family: 'Parabolica', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    max-width: 1920px;
	margin: auto;
    padding-inline: clamp(1rem, 0.4851rem + 2.2388vw, 2.5rem);
    font-size: var(--fs-0);
    line-height: var(--space-m);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: var(--regular);
}

a {
    color: var(--black);
}

.container {
	max-width: 100%;
    margin-inline: auto;
}

img {
    display: block;
    object-fit: cover;
    max-width: 100%;
}