/* base.css - General Styles & Resets */

/* Resetting default styles to ensure consistency */
body, html {
    overflow-x: hidden; /* Prevent horizontal scroll */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif; /*Setting default font*/
    background-color: #fff; /*Default background colour for whole site*/
    color: #333; /* Default text color */
}

img {
    max-width: 100%; /* Make images responsive */
    height: auto;
}