*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

main > p {
	text-align: justify;
	margin-block: 0 1.5rem;
}

h1 {
	font-size: 32px;
	text-wrap: wrap;
	text-align: center;
	color: #005b52;
}

h2 {
	padding-block: 1rem;
	margin: 0;
	font-size: 26px;
	color: #005b52;
}

h3 {
	font-size: 22px;
	color: #3a322d;
	margin-top: 1rem;
	padding-block: 1rem;
}

main {
	width: 67%;
	margin-inline: auto;
	margin-bottom: 2rem;
	padding-inline: 2.5rem;
}


main p {
	padding: 8px 4px;
}

.tags2 {
	list-style-type: disc;
	padding-left: 30px;
}
.tags2 a {
background: linear-gradient(90deg, #00796b, #009688, #26a69a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration: underline;
	text-decoration-color: #009688;
	text-underline-offset: 2px;
	font-weight: 600;
}

.beautiful-table {
	margin-block: 2rem;
}

ol {
	list-style-type: decimal;
	padding-left: 20px;
}

ol li::marker {
	font-weight: bold;
}

.arrow-list  ul {
	list-style-type: disc;
	padding-left: 18px;
	
}
.arrow-list  ul li {
	text-wrap: pretty;
	line-height: 1.6;
	font-size: 16px;
	padding-block: 4px;
	
}

main a {
	background: linear-gradient(90deg, #00796b, #009688, #26a69a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration: underline;
	text-decoration-color: #009688;
	text-underline-offset: 2px;
	font-weight: 600;
}

@media (width < 740px) {
	main {
		width: 100%;
		padding-inline: 1.6rem;
	}

	main h1 {
		font-size: 28px;
	}
}

.side-flex {
	display: flex;
}

.side-flex > div {
	width: 30%;
	/* background: pink; */
	height: 300vh;
	position: sticky;
	top: 5rem;
}
@media (width < 1000px) {
	.side-flex {
		flex-direction: column;
		align-items: center;
	}
	.side-flex > div {
		width: 100%;
		height: min-content;
		position: relative;
	}
}

html {
	scroll-behavior: smooth;
	scroll-padding: 100px;
}

#fake-heading {
	font-family: var(--font-montserrat);
	color: #0d0d0d;
	font-weight: 600;
	font-size: 18px;
	margin-top: 10px;
}
