/* style.css */

/* Reset some default styles */
body, h1, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set a pleasant background and font */
body {
    background: #f5f7fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    min-height: 100vh;
    padding: 0px;
}

/* Example container styling */
.container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px;
}

/* Example heading */
h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #3366cc;
}

/* Example paragraph */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}