@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
        font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
        background-color: #e0cf9e;
        color: #2b1b0b;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
}

:root {
    --bg: #e0cf9e;
    --fg: #f8ae69;
}

a { color: #6c4729; text-decoration: none; }
a:hover { text-decoration: underline; }
