@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("header.css");
@import url("home.css");
@import url("footer.css");

:root {
    --color-primary-1: #ffffff;
    --color-primary-2: #a6a6a6;
    --color-primary-3: #daf4f8;
    --color-primary-4: #ffce7c;
    --color-primary-5: #01b1cc;
    --color-primary-6: #242424;
    --color-primary-7: rgb(36, 36, 36, 0.8);
    --color-primary-8: #f9f8fe;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}
