:root {
    --paragraph-color: #d2d0d7;
    --orange: #f39655;
    --white: white;
    --indian-red: #e94554;
    --sandy-brown: #f39655;
    --background: #1f1536;
    --light-purple: #797386;
    --dark-bg: #150d28;
    --midnight-blue: #2a2140;
    --navbar-background: #1f1536b3;
    --dark-slate-blue: #4f338f;
}

body {
    color: #fff;
    background-color: #1e1435;
    font-family: Apercupro, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

h1 {
    letter-spacing: -0.125rem;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Apercupro, sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
}

h2 {
    letter-spacing: -0.12rem;
    text-shadow: 0 0 #fff6;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Apercupro, sans-serif;
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.2;
}

h3 {
    letter-spacing: -0.0625rem;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Apercupro, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

h4 {
    letter-spacing: -0.0625rem;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.4;
}

h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.5;
}

h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.5;
}

p {
    color: var(--paragraph-color);
    margin-bottom: 0;
    font-size: 1.25rem;
}

a {
    color: var(--orange);
    transition: color 0.2s;
}
a,
.w-input,
.w-select,
.w-tab-link,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
    color: inherit;
    text-decoration: inherit;
    font-size: inherit;
}
a:hover {
    color: var(--white);
}

ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1.25rem;
}

ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}

li {
    color: var(--paragraph-color);
    margin-bottom: 0.25rem;
}

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

label {
    margin-bottom: 0.25rem;
    font-weight: 500;
}

blockquote {
    border-left: 0.25rem solid #e2e2e2;
    margin-bottom: 0;
    padding: 0.75rem 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

figure {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

figcaption {
    text-align: center;
    margin-top: 0.25rem;
}

.layer {
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 0%;
}

.show {
    display: block;
}

.hide {
    display: none !important;
}
.hidden {
    display: none !important;
}
.overflow-hidden {
    overflow: hidden;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-auto {
    overflow: auto;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.z-2 {
    z-index: 2;
    position: relative;
}

.gradient {
    z-index: -1;
    box-sizing: border-box;
    background-image: linear-gradient(
        95deg,
        var(--indian-red),
        var(--sandy-brown) 50%,
        var(--sandy-brown) 50%,
        var(--indian-red)
    );
    object-fit: fill;
    width: 200%;
    position: absolute;
    inset: 0%;
    overflow: hidden;
}

.email-link:hover {
    text-decoration: underline;
}
