
/* RESET - remove default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* basic body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url('IMG_2860.jpeg');
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;  
    min-height: 100vh;
}

/* basic layout placeholders */
header, main, footer {
    padding: 20px;
}

/* example: simple grid-ready main */
main {
    display: grid;
    gap: 20px;
}

