/* AEM Labs Limited - CSS: Root
   ============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fraunces", "Times New Roman", sans-serif;
}

:root {
    --bg-color-1: #2e2c2a;
    --bg-color-1-rgb: 46, 44, 42;
    --bg-color-2: #181612;
    --bg-color-2-rgb: 24, 22, 18;
    --accent-color-1: #df9b00;
    --accent-color-1-rgb: 223, 155, 0;
    --accent-color-2: #b88101;
    --accent-color-2-rgb: 184, 129, 1;

}

::selection {
    background: rgba(var(--accent-color-1-rgb), 0.5);
    color: #eee;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Fraunces", "Georgia", serif;
    background-color: var(--bg-color-1);
    overflow-x: hidden !important;
    letter-spacing: 0.5px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
    -webkit-text-size-adjust: 100%;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}