
/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
}

:root {
    --primary-color: #A31D1D;
    --secondary-color: #FEF9E1;
    --accent-color: #6D2323;
    --text-color: #1d1c1c;
    --light-text: #EFD0AC;
    --background: #ffffff;
    --dark-bg: #6D2323;
}

html {
    /* disable Bootstrap smooth scroll behaviour */
    scroll-behavior: auto !important;
}

body {
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.v-space {
    height: 1rem;
    width: 100%;
}
