/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html {
    height: 100%;
    overflow-x: clip;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    overflow-wrap: break-word;
}
span, p p {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

/* Forms and related elements */
form :where(input,input:focus) {
    border-style: solid;
    outline: none;
    box-shadow: none;
    --webkit-box-shadow: none;
}
form :where(input, button, textarea, select) {
    font: inherit;
}
form :where(button, input[type="submit"], input[type="reset"]) {
    align-items: unset;
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

/* Images */
img, picture, video, canvas, svg {
    display: block;
}
svg {
    fill: currentColor;
}

/* Iframes */
iframe {
    border: none;
}
