@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    transition: all .2s linear;
    font-family: "Quicksand", sans-serif;
    border: none;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-padding-bottom: 6rem;
}

section{
    cursor: default;
    padding: 2rem 6%;
    min-height: 30vh;
}

:root{
    --bg:#0D1015;
    --surface:#14181F;
    --border:#22262E;
    --shadow:0 8px 15px rgba(11, 12, 17, 0.7);
}

body{
    background: var(--bg);
}