*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
	scroll-behavior: smooth;
	touch-action: manipulation;
}

body {
	width: 100%;
	max-width: 100%;
	margin: 0;
	overflow-x: hidden;
	overflow-x: clip;
	font-family: var(--font-main);
	color: var(--color-text);
	background: radial-gradient(circle at 15% 10%, #143850 0%, var(--color-bg) 45%) fixed;
	line-height: 1.6;
	overflow-wrap: anywhere;
	touch-action: manipulation;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas,
iframe {
	max-width: 100%;
}

img {
	display: block;
}

main,
header,
footer,
section,
nav,
form,
fieldset {
	min-width: 0;
}

input,
select,
textarea,
button {
	min-width: 0;
	max-width: 100%;
}

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

button {
	font: inherit;
	color: inherit;
}

h1,
h2,
h3,
p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

:focus-visible {
	outline: 0.125rem solid var(--color-focus);
	outline-offset: 0.125rem;
}

.skip-link {
	position: absolute;
	left: 0.5rem;
	top: -3rem;
	z-index: 99;
	padding: 0.5rem 0.75rem;
	background: var(--color-focus);
	color: #1f1f1f;
	border-radius: var(--radius-1);
}

.skip-link:focus {
	top: 0.5rem;
}

.visually-hidden {
	position: absolute;
	width: 0.0625rem;
	height: 0.0625rem;
	padding: 0;
	margin: -0.0625rem;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
