* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFF8F0;
    color: #2C2C2C;
}

:root{
    --primary: #4E342E;
    --secondary: #C9A227;
    --accent: #556B2F;
    --background: #FFF8F0;
    --text: #2C2C2C;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--text);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}