/* ========================================
   HEIMDALL STARTER
   RESET CSS
   Castelmonte Stufe
   ======================================== */

/* Box sizing */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Reset margin e padding */

* {
	margin: 0;
	padding: 0;
}

/* Document */

html {
	font-size: 100%;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	overflow-x: hidden;
}

/* Media */

img,
picture,
svg,
video,
canvas,
iframe {
	display: block;
	max-width: 100%;
	height: auto;
}

/* SVG */

svg:not([fill]) {
	fill: currentColor;
}

/* Forms */

input,
button,
textarea,
select {
	font: inherit;
}

/* Textarea */

textarea {
	resize: vertical;
}

/* Fieldset */

fieldset {
	border: 0;
	min-width: 0;
}

/* Tables */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Lists */

ul,
ol {
	list-style: none;
}

/* Typography */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* Sup / Sub */

sup,
sub {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* Disabled elements */

:disabled {
	cursor: not-allowed;
}

/* Focus */

:focus-visible {
	outline-offset: 2px;
}