@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*

font-family: "Poppins", sans-serif;
font-family: "Roboto", sans-serif;
font-family: "Inter", sans-serif;
font-family: "Open Sans", sans-serif;

*/

:root {
    --background-color: #EBEDF7;
    --primary-color: #424BB6;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --text-color: #00000099;
    --h1-color: #000000E6;
    --semi-black-color: #262626;
    --green-color: #52B642;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--background-color) !important;
}

.body {
    max-width: 1366px;
    margin: auto;
}

h1 {
    color: var(--h1-color);
    font-size: 36px;
}

h1, h3 {
    font-weight: bold !important;
}

.h1-primary, .h3-primary {
    color: var(--primary-color);
}

p {
    color: var(--text-color);
    font-size: 20px;
}

@media screen and (min-width: 320px) {
    .body {
        max-width: 400px;
        padding: 16px;
        align-items: center;
    }
}

@media screen and (min-width: 480px) {
    .body {
        max-width: 800px;
        padding: 16px;
    }
}

@media screen and (min-width: 800px) {
    .body {
        max-width: 900px;
        padding: 16px;
    }
}

@media screen and (min-width: 1024px) {
    .body {
        max-width: 1200px;
        padding: 16px;
    }
}

@media screen and (min-width: 1300px) {
    .body {
        max-width: 1366px;
        padding: 16px;
    }
}
