@import "tailwindcss";

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #4B24A0;
    --color-secondary: #5E95FF;
    --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); */
    color: var(--color-text-gray);

}


h1 {
    font-family: "Protest Strike", sans-serif;
    color: var(--color-secondary);
    line-height: 1;
}

h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    width: 100%;
    line-height: 1;
}

table {
    min-width: 100%;
    border: 1px solid #D1D5DB;
    border-collapse: collapse;
    background-color: #fff;
    /* margin: 32px 0px; */
}

table tr+tr {
    border-top: 1px solid #E5E7EB;
}

thead {
    background-color: var(--color-purple-light);
}

thead td, thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 12px 16px;
}

tbody td {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif !important;
    line-height: 1.6;
    letter-spacing: 0.01em;
    word-spacing: normal;
    padding: 12px 16px;
}

li {
    display: list-item;
    list-style-position: outside;
}

.text {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif !important;
    line-height: 1.6;
    letter-spacing: 0.01em;
    word-spacing: normal;
    margin: 18px 0px;

}

.text_heading {
    color: #000;
    font-weight: 600;
    /* text-transform: uppercase; */
}

section {
    padding: 60px 0px;
}