*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	color: var(--default);
	font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
	background: var(--background);
}
html {
	font-size: 62.5%;
}
@media (max-width: 576px) {
	html {
		font-size: 56.25%;
	}
}

body {
	font-size: 1.6rem;
	line-height: 1.6;
	background: var(--background);
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
	margin-bottom: 1.5rem;
}
h1 {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.2;
}

h2 {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.3;
}

h3 {
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.4;
}

h4 {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}

h5 {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
}

h6 {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
}
p {
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	line-height: 1.6;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

ul, ol {
	list-style: none;
}

button {
	/* all: unset; */
	cursor: pointer;
}

blockquote {
	margin: 2rem 0;
	padding: 1rem 2rem;
	border-left: .4rem solid var(--gray);
	font-style: italic;
}

pre, code {
	font-family: monospace;
	background-color: var(--dark);
	padding: .2rem .4rem;
	border-radius: .3rem;
}

pre {
	padding: 1rem;
	overflow-x: auto;
}

pre code {
	background-color: transparent;
	padding: 0;
}