:root {
    --primary-color: #392620;
    --accent-color: #df3232;
    --secondary-color: #f9f9f9;
    --width: 1200px;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--secondary-color);
}