:root {
    --step--2: clamp(0.69rem, calc(0.57rem + 0.6vw), 1.04rem);
    --step--1: clamp(0.83rem, calc(0.67rem + 0.81vw), 1.3rem);
    --step-0: clamp(1rem, calc(0.78rem + 1.09vw), 1.63rem);
    --step-1: clamp(1.2rem, calc(0.91rem + 1.45vw), 2.03rem);
    --step-2: clamp(1.44rem, calc(1.06rem + 1.91vw), 2.54rem);
    --step-3: clamp(1.73rem, calc(1.23rem + 2.51vw), 3.17rem);
    --step-4: clamp(2.07rem, calc(1.42rem + 3.29vw), 3.97rem);
    --step-5: clamp(2.49rem, calc(1.63rem + 4.3vw), 4.96rem);
    --clr-primary: #e1e1e1;
    --clr-backgr: #2b2b2b;
    --clr-txt: #e1e1e1;
    --ff-primary: "Montserrat", sans-serif;
    /* --ff-primary: "Roboto Condensed", sans-serif; */
    --ff-nav: "Poppins", sans-serif;
    --ff-body: var(--ff-primary);
    --ff-header: var(--ff-nav);
    --ff-footer: var(--ff-nav);
    --fw-regular: 400;
    --fw-bold: 700;
    --fs-400: 0.875rem;
    --fs-600: 1rem;
    --fs-700: 2.25rem;
    --fs-900: var(--step-5);
    --fs-body: var(--fs-600);
}

/*
1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*
2. Remove default margin and set some stuff on default elements
*/
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

html {
    height: 100%;
    font-size: 16px;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--ff-primary);
    font-size: var(--fs-body);
    min-height: 100%;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    background-color: var(--clr-backgr);
}

.contentcontainer {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a {
    color: var(--clr-primary);
    text-decoration: none;
}

.logoimage {
    width: 24rem;
}

.slogan {
    color: #e1e1e1;
    font-size: 1rem;
    line-height: 1.25rem;
    margin-top:2rem;
}
