/*
 * A very basic CSS reset
 */

*, *::before, *::after {
    /* Standard box model for easier layout */
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

/* Set up a default font and line height */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    background-color: #f4f4f4; /* Light background */
    color: #333; /* Dark text */
    min-height: 100vh;
}

/* Remove list styles for navigation, etc. */
ul, ol {
    list-style: none;
}

/* Make images responsive by default */
img {
    max-width: 100%;
    display: block;
}

/* Remove default link text decoration */
a {
    text-decoration: none;
    color: inherit;
}