:root {

    /* Primary */

    --soft-cyan-full-slider-bar: hsl(174, 77%, 80%);
    --strong-cyan-slider-background: hsl(174, 86%, 45%);
    --light-grayish-red-discount-background: hsl(14, 92%, 95%);
    --light-red-discount-text: hsl(15, 100%, 70%);
    --pale-blue-cta-text: hsl(226, 100%, 87%);

    /* Neutral */

    --white-pricing-component-background: hsl(0, 0%, 100%);
    --very-pale-blue-main-background: hsl(230, 100%, 99%);
    --light-grayish-blue-empty-slider-bar: hsl(224, 65%, 95%);
    --light-grayish-blue-toggle-background: hsl(223, 50%, 87%);
    --grayish-blue-text: hsl(225, 20%, 60%);
    --dark-desaturated-blue-text-cta-background: hsl(227, 35%, 25%);

}

@font-face {
    font-family: 'Manrope', sans-serif;
    src: url(./fonts/Manrope/Manrope-VariableFont_wght.ttf);
}

body {
    display: grid;
    max-width: 100svh;
    max-width: 100svw;
    font-weight: 600;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background-color: var(--very-pale-blue-main-background);
    container: body / inline-size;
}

main {
    display: grid;
    min-height: 100cqh;
    background-image: url(./images/bg-pattern.svg);
    background-repeat: no-repeat;
    background-size: 100% 50%;
    place-content: center;
    text-align: center;
    gap: 10px;
    font-weight: 600;
}

header {
    display: grid;
    grid-auto-rows: min-content;
    background-image: url(./images/pattern-circles.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 600;
    color: var(--grayish-blue-text);
}

div[class="attribution"] {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@container(inline-size < 1000px) {
    header {
        box-sizing: border-box;
        padding: 30px;
    }

    h1 {
        font-size: larger;
    }

    h2 {
        font-size: large;
    }
}
