﻿/* wwwroot/css/cottage-rules.css */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
}
/* Rest of the CSS from the rules HTML */
@media print {
    .container {
        box-shadow: none;
        margin: 0;
    }

    body {
        background-color: #fff;
    }
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
