html {
    word-wrap: break-word;
}

body {
    margin: 0;
    text-rendering: optimizeLegibility;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: var(--body-text);
    overflow-x: hidden;
}

b, strong {
    font-weight: 700;
}

#top-menu {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 1em 0;
    background-color: var(--background-color);
}

.decor-font {
    font-family: 'Lacquer', cursive;
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 3rem */
    letter-spacing: -0.0625rem;
    color: var(--background-color)
}

h2 .decor-font {
    font-size: 2.25rem;
}

.button {
    background-color: var(--primary-button-color);
    color: var(--body-text);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid var(--body-text);
    display: inline-block;
    margin: 1rem 0;
    font-size: 1rem!important
}

.button:hover, .button-black:hover {
    transform: scale(1.05);
}

.button-black {
    background-color: var(--body-text);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 100px;
    border: 2px solid var(--body-text);
    display: inline-block;
    margin: 1rem 0;
    font-size: 1rem
}

.align-center {
    text-align: center;
}

p {
    line-height: 150%;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.align-center p {
    padding: 0 15vw;
    margin-bottom: 3rem
}

.journey-product {
    font-size: 4rem;
}

h1, h2 {
    font-family: 'Alfa Slab One', cursive;
    font-weight: 400;
    margin-bottom: 1.5rem
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.375rem;
    font-family: 'Alfa Slab One', cursive;
}

.blog a {
    text-decoration: none;
}

.blog a h3 {
    font-size: 1.375rem;
    color: white;
    text-decoration: none;
    font-family: 'Alfa Slab One', cursive;
    font-weight: 300;
}

.blog a h3:hover {
    color: var(--primary-button-color)
}

h4 {
    font-family: 'Alfa Slab One', cursive;
    font-size: 1rem;
    font-style: normal;
}

#footer ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.125rem;
    margin: 0.5rem 0;
    display: block;
    font-weight: 300;
}

#footer ul li a:hover {
    color: var(--primary-button-color)
}

#footer h4 {
    margin: 2rem 0;
}

#copyright p {
    font-size: 1rem;
}

#copyright p a {
    color: var(--primary-button-color);
    text-decoration: none;
}

.blog, .main-form {
    color: white
}

.blog h2 {
    font-size: 4rem;
}

.published {
    font-size: 1rem;
}

button.plus {
    font-size: 2rem;
    background: none;
    padding-right: 1rem;
    margin-bottom: -0.3rem
}

button.minus {
    font-size: 2rem;
    background: none;
    padding-left: 1rem;
}

h3.wp-block-heading {
    position: absolute;
    padding-right: 1rem
}

h3.wp-block-heading::before {
    background-color: #F7D046;
    content: '';
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 5px;
    right: 0;
    top: 50%;
    transform: translateX(100%);
    border-radius: 100px
}

h3.wp-block-heading::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    width: 50%;
    height: 1px;
    background: #e5e5e5;
    transform: translateX(100%);
}

.wc-price-history.prior-price.lowest {
    font-size: 0.875rem;
    order: 3;
    margin-bottom: 0.5rem;
}

tbody a {
    color: inherit
}

#blog article .tags {
    margin: 3rem 0;
    display: inline-flex;
    gap: 1rem
}

#blog article .tags a {
    padding: 5px 20px;
    border: solid 0.8px var(--body-text);
    border-radius: 100px;
    background: none;
    text-decoration: none;
}

#blog h3.wp-block-heading {
    margin: 2rem 0 1rem
}

#blog h3.wp-block-heading:hover {
    color: var(--primary-button-color)
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

#blog article .nav-previous a, #blog article .nav-next a {
    font-family: 'Alfa Slab One';
    text-decoration: none;
    background: none;
}

#blog article .nav-previous a:hover, #blog article .nav-next a:hover {
    color: var(--primary-button-color)
} 


@media screen and (max-width: 740px) {
    h1 {
        font-size: 1.875rem;
    }

    h2, .blog h2 {
        font-size: 1.5rem;
        padding: 0
    }

    .align-center p {
        padding: 0
    }

    .journey-product {
        font-size: 2.5rem;
    }

    .decor-font {
        font-size: 1.75rem;
    }

    h1 .decor-font {
        font-size: 3.125rem
    }

    .woocommerce-error, .woocommerce-info, .woocommerce-message {
        flex-direction: column-reverse;
        gap: 1rem
    }
}

main article blockquote {
    font-style: italic;
    font-family: 'Alfa Slab One', cursive;
    font-weight: 300;
}

main ol li {
    counter-increment: li-counter;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.4;
}

main ol li::before {
    content: counter(li-counter) '.';
    background: var(--body-text);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    line-height: 1.5rem;
    color: var(--background-color);
    text-align: center;
    margin-right: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    font-size: .75rem;
}

main ul li, aside ul li {
    line-height: 1.3;
    list-style-type: square;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
}

aside ul li a {
    color: inherit
}

@media only screen and (max-width: 880px) {

    #hero h1 {
        font-size: 2.188rem;
        line-height: 1.2;
    }

    #inner-page h1 {
        font-size: 2.18rem;
    }

    .subheader {
        font-size: 1.5rem;
    }

    .citation-text {
        font-size: 1.875rem;
        width: 100%;
    }

    #inner p, .inner-bg p {
        padding: 0
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem
    }
}


@media screen and (min-width: 1201px)
    {
        html {
            font-size: 1.125vw;
        }

    }
