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

html {
    font-size: 15px;
    min-height: 100%;
}
/* fonts */
.alfa-slab-one-regular {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-serif {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}

/* global styles */
body {
  margin: 0;
  text-align: center;
  background-color: var(--dark-green);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
  color: var(--text-color-dark);
  font-family: var(--body-font);
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
}

section {
  min-height: 100svh;
  padding: var(--body-font-M);
}

.section-content {
  width: min(50rem, 100%);
  margin-inline: auto;
  background-color: var(--cream-color);
  padding: var(--body-font-L);
  border-radius: 1rem;
}

p {
    width: 40rem;
    height: 100%;
    margin: auto;
}

.trail-marker {
    width: 50rem;
    height: auto;
    margin-left: -40rem;
}

/* parallax scene */

.hero-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -11;
}

.hero-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -10;
}

.hero-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -9;
}

.hero-layer-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -8;
}

.hero-layer-5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -7;
}
.hero-layer-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -6;
}

.hero-layer-7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -5;
}

.hero-layer-8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -4;
}
/* sun svg */
.sun-svg {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    height: auto;
    z-index: -10;
}

.trail-start-svg {
    position: absolute;
    top: 100%;
    left: 45%;
    transform: translateX(-50%);
    width: 1210px;
    height: auto;
    z-index: -10;
    margin-top: 18rem;
}
.trail-svg {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: -10;
    margin-top: 38.4rem;
}

h1 {
    font-family: var(--header-font);
    font-size: var(--header-font-M);
    margin: 0;
    color: var(--text-color-dark);
}

h2 {
    font-family: var(--header-font);
    font-size: var(--body-font-L);
    margin: 0;
    color: var(--text-color);
}

.section-1-content {
    color: var(--cream-color);
    margin-top: 20rem;
}

/* section opening */ 
.section-content {
    justify-content: right;
    align-items: flex-end;
    gap: var(--body-font-M);
    margin-top: 18rem;
}

.section-content {
    line-height: 2;
}

ul {
    list-style-position: inside;
    text-align: left;
    padding-left: 10rem;
}

.opening-title-text {
    margin-left: -40rem;
    margin-top: -24rem;
}

/* right side signs stlying */
.trail-marker2 {
    width: 50rem;
    height: auto;
    margin-right: -40rem;
}

.closing-title-text {
    margin-right: -40rem;
    margin-top: -24rem;
}

/* subheaders */
.opening-sub-text {
    margin-right: -40rem;
}

.closing-sub-text {
    margin-right: 40rem;
}