<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import 'reset.css';
@import 'typography.css';
@import 'general.css';
@import 'form.css';
@import 'cursor.css';
@import 'animation.css';

html {
    font-weight: 500;
}

main {
    padding-left: 4rem;
    padding-right: 4rem;

    @media(min-width: 1100px) {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

section {
    min-height: 100dvh;
    width: 100%;
    align-content: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1420px;
    width: 100%;
    margin: 0 auto 10rem;

    &amp;:last-of-type {
        margin-bottom: 0;
    }

    &gt; * {
        padding: 1rem;
    }
}

.source {
    display: flex;
    padding-top: 1rem;
    border-top: 1px solid #404040;
    margin-top: 2rem;
    width: 100%;

    img {
        width: 30px;
        margin-bottom: auto;
    }

    a {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
    }
}

.container--100 {
    width: 100%;
}

.container--50 {
    width: 100%;
}

/*** Positioning and Spaces ***/
.max-w--500 {
    max-width: 500px;
}

.mr--auto {
    margin-right: auto;
}

.mx--auto {
    margin-left: auto;
    margin-right: auto;
}

.w--full {
    width: 100%;
}

.gap--20 {
    gap: 20px;
}

.flex--wrap {
    flex-wrap: wrap;
}

.flex--row {
    display: flex;
    flex-direction: row;
}

.flex--col {
    display: flex;
    flex-direction: column;
}

.flex--space-out {
    justify-content: space-between;
}

.flex--align-center {
    align-items: center;
}

.flex--center {
    display: flex;
    justify-content: center;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-25 {
    margin-top: 50px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-100 {
    margin-top: 100px;
}

.pointer--none {
    pointer-events: none;
}

/*** Title Section ***/
section#header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
}

#header {
    button {
        animation: buttonSlideIn 500ms both 1.5s;
    }
}

@keyframes buttonSlideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/***  Section BMI  ***/
.bmi-line {
    opacity: .8;
    &amp;.is-active {
        border-radius: 10px;
        animation: lineMovement 500ms infinite alternate ease;
        opacity: 1;
    }
}

@keyframes lineMovement {
    0% {
        filter: drop-shadow(0 0 0px currentColor);
    }
    100% {
        filter: drop-shadow(0 0 4px currentColor);
    }
}

input[type=number] {
    font-family: "IBM Plex Mono", mono;
    font-weight: bold;
    -webkit-appearance:none;
    appearance: none;
}

input#height, input#weight, .unit {
    background: var(--background);
    color: #F2F2F2;
    border: none;
}

input#height, input#weight {
    border-radius: 10px 0 0 10px;
    padding: 15px 15px 15px 15px;
    border-right: #3E3E3E 1px solid;
    text-align: right;
    width: 100%;
    -moz-appearance: textfield;
}

input#height:focus, input#weight:focus {
    outline:none;
}

.unit {
    padding: 15px;
    border-radius: 0 10px 10px 0;
}

#result:not(:empty) {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--pink);
    color: white;
    border-radius: 10px;
    margin-top: 2rem;

    p {
        margin: 0;
    }
    * {
        color: currentColor;
    }
}


@media(min-width: 1100px) {
    .container--50 {
        width: 50%;
    }
    .container--40 {
        width: 40%;
    }
    .container--60 {
        width: 60%;
    }
}

/** Section poverty vs weight **/
.legend {
    align-items: center;
    justify-content: center;

    .legend--bg {
        background: var(--background);
        border-radius: 15px;
        padding: 2em;
        width: 80%;
        margin: 0 auto;
    }

    .legend--tag {
        padding: 8px 15px;
        border-radius: 20px;
        border: solid 1px var(--white);
        margin-right: 20px;
        width: 80px;
        text-align: center;
    }

    .legend--text{
        width: 75%;
    }
}

.slider-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    /** labels **/
    datalist {
        display: flex;
        justify-content: space-between;
        color: var(--white);
        width: 50%;
    }

    .slider {
        width: 50%;
        background: transparent;
        margin: 12px 0;
        -webkit-appearance: none;
    }

    .slider:focus {
        outline: none;
    }

    .slider::-webkit-slider-runnable-track {
        width: 100%;
        height: 8.4px;
        cursor: pointer;
        background: var(--white);
        border-radius: 10px;
    }

    .slider::-webkit-slider-thumb {
        height: 20px;
        width: 20px;
        border-radius: 10px;
        border: none;
        background: var(--pink);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -5.5px;
    }

    .slider:focus::-webkit-slider-runnable-track {
        background: var(--white);
    }

    .slider::-moz-range-track {
        width: 100%;
        height: 8.4px;
        cursor: pointer;
        background: var(--white);
        border-radius: 10px;
    }

    .slider::-moz-range-thumb {
        height: 20px;
        width: 20px;
        border-radius: 10px;
        border: none;
        background: var(--pink);
        cursor: pointer;
    }
}

/* Section OBSTACLES */
#obstacles-graph {
    overflow: visible;
}


/* Section BASKET */
#basket {
    .arc {
        transition: all 500ms ease;
        cursor: pointer;
    }
    .graph {
        display: flex;
        justify-content: center;
        align-items: center;

        .graph-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;

            &amp;::before {
                display: none;
                pointer-events: none;
                content: "";
                border: 2px solid var(--background);
                transform: scale(.7);
                width: 100%;
                height: 100%;
                background: #191919;
                border-radius: 100%;
                position: absolute;
                z-index: -1;
            }

            &amp;::after {
                display: none;
                pointer-events: none;
                content: "";
                transform: scale(.91);
                border: 2px solid var(--background);
                width: 100%;
                height: 100%;
                background: var(--main-background);
                border-radius: 100%;
                position: absolute;
                z-index: -2;
            }

            @media(min-width: 1100px) {
                &amp;::after, &amp;::before {
                    display: block;
                }
            }

            .legend {
                font-weight: 600;
                display: flex;
                flex-direction: column;
                gap: 2rem;

                .label-container {
                    pointer-events: none;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: .5rem;
                    width: 100%;

                    @media(min-width: 1100px) {
                        position: absolute;
                    }

                    .label-text {
                        transition: all 500ms;
                    }

                    .value-container {
                        border-radius: 100vh;
                        padding: .25rem .5rem;
                        background: currentcolor;

                        .value {
                            color: black;
                        }
                    }
                }
            }
        }

    }
    svg {
        overflow: visible;
    }
}



/***  Section END  ***/
#end {
    &gt; div {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        * {
            color: #808080;
        }
    }
}</pre></body></html>