*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #29bf12;
    --purple: #4700c5;
    --red: #f21b3f;
    --orange: #ff9914;
    --black: #111111;
    --white: #ffffff;
    --lime: #b8ff3a;
    --cyan: #00e5e5;
    --pink: #ff2de1;
    --yellow: #ffe600;
    --bg: #ebebeb;
    --bg-light: #f4f4f4;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--black);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Black Han Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

/* first we'll set the main element to be centered vertically and horizontally with a max-width of 900px */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
body .bg {
    z-index: -1;
}
body > main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
}