@layer reset {

	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	h1, h2, h3, h4, h5, h6 {
		font-weight: 400;
	}

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

	img {
		display: block;
		max-width: 100%;
		height: auto;
	}

	ul, ol, dl, menu {
		list-style: none;
	}


	button {
		cursor: pointer;
		appearance: none;
		border: none;
		background: none;
		font: inherit;
		color: inherit;
		font-size: inherit;
		line-height: inherit;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 0.5em;
	}
}