:root {
    --brand-color: #FF2B34;
    --border-color: #D9D9D9;
    --lighter-font: #5A5A5A;
    --darker-font: #18181B;
    --input-border: #D5D7DA;
    --button-secondary: #F9FAFB;
    --background-color: #F6F6F6;
    --separator-color: #D3D3D3;
    --title-size: 24px;

    --progress-green: #66BB33;
    --progress-yellow: #DFAD40;
    --progress-olive: #C5C772;
    --progress-pink: #E66699;
    --progress-red: #FF2B34;

}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1600px;
    border-style: solid;
    border-width: 0px 2px 0px 2px;
    border-color: var(--border-color);
    margin: auto;
    background-color: var(--background-color);

}

body,
p,
span,
a,
li,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
textarea,
select {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

a:hover {
    color: var(--brand-color)
}