*,
*::before,
*::after {
	box-sizing: border-box;
}

*:focus-visible {
	border: 1px solid var(--border-second-three);
	outline: none;
}

[contenteditable]:focus {
	border: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

body {
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1;
}



img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	background: none;
	border: none;
	cursor: pointer;
}

input,
button,
textarea,
select {
	font: inherit;
	-webkit-appearance: none;
	padding: 0;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}