﻿html, body {
    height: 100%;
    font-size: 1.2rem;
}


body {
    background-color: #E3ECF1; /* or whichever hex you choose */
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
}

/* Typography and layout */
h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
}

p {
    font-family: 'Georgia', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    max-width: 1200px;
}

/* Container styling */
#ContentPlaceHolder1 {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    #ContentPlaceHolder1 {
        padding: 1rem;
    }

    p {
        font-size: 1rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}
