Heading 1 is like this

Heading 2 is like this

Heading 3 is like this

Heading 4 is like this

Paragraph 1 is like this

Paragraph 2 is like this

Paragraph 3 is like this

Useful code

//Anchor links//
<p id="about">

//Smooth scroll//
html {
  --scroll-behavior: smooth;
  scroll-behavior: smooth;
}
//Smooth page loading//
body:not([data-animation-state="booted"]) > * {
  opacity: 0;
}
// Hide vertical bar from quote//
blockquote {
  border: none !important;
  padding-left: 0;
}
//Hide dash next to author in quote//
.sqs-block-quote .source:first-letter {font-size:0}
// Fading Folder Nav //
.header .header-nav .header-nav-item--folder .header-nav-folder-content {
  transition: ease-in-out 0.4s;
}
//curved edges for list item//
.list-item {
border-radius: 10px;
}
// change header nav active underline color //
.header-nav-item--active a {
 border-bottom: 2px solid #F8FF00 !important;
}