:root {
    --gradient-size: 17px;
    --border-radius-large: 20px;

    --color-bg-primary: #efefef;

    --color-primary: #fff;
    --color-accent: #ff6400;
    --color-sub-accent: #FEED43;
    --color-text-light: #fff;
    --color-text-dark: #000;
    --color-subtext: #0C9D6A;
    --color-success: #83B706;

    --font-family: 'Roboto', sans-serif;;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 900;

    --pulse-animation-duration: 1s;

    --shadow-default: 2px 2px 32px 8px rgba(50, 50, 50, 0.4);
}

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

html, body {
    overflow-x: hidden;
    font-size: 13px;
}

body {
    position: relative;
    font-family: var(--font-family);
    background-color: var(--color-bg-primary);
}

main {
    margin: 0 1rem;
}

h1, h2, p {
    position: relative;
    z-index: 1;
}

p {
    font-weight: var(--font-weight-normal);
}

img {
    /* width: 100%;
    height: 100%; */
    object-fit: contain;
    z-index: -1;
}

a { 
    color: unset;
    text-decoration: unset;
}

.gradient {
    background-image: 
        linear-gradient(to right, rgba(200, 200, 200, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 200, 200, 0.3) 1px, transparent 1px);
    background-size: var(--gradient-size) var(--gradient-size);
    position: relative;
    z-index: -2;
}

.logo {
    position: fixed;
    top: .2rem;
    left: -1.8rem;
    margin: 0;
    transform: scale(.6);
}

.highlight {
    background: var(--color-accent);
    color: var(--color-text-light);
    font-weight: var(--font-weight-extra-bold);
    font-size: 3rem;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 0.5rem;
    font-style: italic;
}

.highlight.small {
    font-size: 2.5rem;
}

.sub-highlight {
    background: var(--color-sub-accent);
    color: var(--color-subtext);
    font-weight: var(--font-weight-bold);
    font-size: 2rem;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 0.5rem;
}

.black-box {
    background: var(--color-text-dark);
    color: var(--color-text-light);
    font-weight: var(--font-weight-bold);
    font-size: 1.7rem;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 0.5rem;
}

.text-section {
    padding-top: 70px;
}

.btn-wrap {
    position: relative;
}

.desc {
    margin-top: 1.3rem;
    color: var(--color-text-dark);
}

.desc p {
    font-size: 1.3rem;
}

.desc span {
    font-weight: var(--font-weight-bold);
}

.continue {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    text-align: center;
    z-index: -3;
}

.continue-btn {
    width: 85%;
    padding: 1rem .5rem .7rem .5rem;
    background: var(--color-success);
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.9rem;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    animation: pulse var(--pulse-animation-duration) ease-in-out infinite;
    will-change: transform;
    letter-spacing: 7px;
    box-shadow: 0px 4px 4px 0px #273603B2;
    white-space: nowrap;
}

.continue-btn:hover {
    background: #f0f0f0;
}

.continue-btn__icon {
    display: inline-flex;
    position: relative;
    /* top: 0.55rem; */
}

.image--down,
.image--right,
.image--left {
    position: absolute;
}

.image--down {
    top: -.5rem;
    right: -1.2rem;
    width: 68vw;
    border-bottom-left-radius: 43%;
    border-bottom-right-radius: 43%;
    /* max-height: 56vh; */
}

.image--left {
    max-width: 330px;
    width: 43vw;
    left: -1.2rem;
    bottom: 130%;
    border-top-right-radius: 45%;
    border-bottom-right-radius: 45%;
    transform: scaleX(1.2);
}

.image--right {
    bottom: 100%;
    right: -3.3rem;
    width: 45vw;
    transform: scale(.7);
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.top.gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44vh;
}

.down.gradient {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 26vh;
    z-index: -10;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (min-height: 700px) and (min-width: 380px) {
    html, body {
        font-size: 15px;
    }

    .image--left {
        width: 42vw;
    }

    .image--right {
        bottom: 100%;
    }
}

@media (min-height: 800px) and (min-width: 390px) {
    html, body {
        font-size: 16spx;
    }

    .image--left {
        width: 55vw;
        bottom: 130%;
    }

    .image--right {
        bottom: 170%;
    }
}

@media (min-height: 800px) and (max-width: 350px) {
    html, body {
        font-size: 16px;
    }

    .image--left {
        width: 55vw;
        bottom: 130%;
    }

    .image--right {
        bottom: 150%;
    }
}

@media (min-width: 400px) {
    .highlight {
        font-size: 3.8rem;
    }
}

@media (min-width: 500px) {
    html, body {
        font-size: 15px;
    }
}

@media (min-width: 600px) {
    img { max-width: 360px; }

    .image--right {
        right: -5rem;
    }
}

@media (min-width: 800px) {
    br.brk { display: none; }
}

@media (min-height: 800px) {
    .continue {
        bottom: 2rem;
    }
    
    .continue-btn {
        padding: 1.4rem .5rem 1.1rem .5rem;
    }
}