
/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Poppins Medium */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Poppins SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Poppins Bold */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #fff;
    color: #222;
}
html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0075c9;
    --light-blue: #f4faff;
    --footer-blue: #0077b5;
    --badge-blue: #c9e9f7;
    --highlight: #005f9e;
    --success-green: #00b2aa;
    --success-green-dark: #009d96;
    --text-dark: #222;
    --text-gray: #444;
    --border-light: #e5e5e5;
    --white: #ffffff;
}

main{
    margin-top: 100px;
}
@media(max-width: 800px) {
    main{
        margin:0;
    }
}