@import "tailwindcss";

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #4B24A0;
    --color-primary-dark: #150B2B;
    --color-primary-light: #3C2F61;
    --color-grey: #FAF6FF;
    --color-grey-light: #F2F2F2;
    --color-grey-dark: #ECECEC;

    --color-purple-light: #E1D3FF;

    --color-orange-dark: #E7612E;
    --color-orange-light: #FFE1D6;

    --color-blue-light: #D7EFFF;

    --color-yellow-light: #FFEBB2;
    --color-yellow-dark: #403A2A;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
    background-color: var(--color-grey);

}

/* a {
    color: var(--color-primary-dark)
} */

button {
    height: 47px;
    padding: auto 12px;
}


h1 {
    font-family: "Protest Strike", sans-serif;
    line-height: 1;
}

h2 {
    font-family: "Protest Strike", sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 42px;
    max-width: 915px;
    text-wrap: balance;
    line-height: 1;

}

h3 {
    font-weight: bold;
    font-size: 16px;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
}

th {
    border-right: 1px solid var(--color-grey-dark);

    border-bottom: 1px solid var(--color-grey-dark);

    padding: 24px 16px;
    font-weight: 500;
    margin: auto 40px;
}

td {
    padding: 12px 16px;
    border-right: 1px solid var(--color-grey-dark);

}


li {
    line-height: 1.5 !important;
}