@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#f7ca55;
    --dark:#08111f;
    --gray:#64748b;
    --light:#f8fafc;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{

    color:var(--dark);

    font-weight:800;

    letter-spacing:-1px;
}

p{

    color:var(--gray);

    line-height:1.8;
}

a:hover{

    text-decoration:none;
}

section{

    padding:110px 0;
}