/*1. Page Layout & Base Typography*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f7f9fc; /* Soft, light background color */
    color: #2c3e50;            /* Dark slate gray text for easier reading */
    max-width: 650px;          /* Centers and wraps the layout beautifully */
    margin: 40px auto;         /* Balanced outer screen padding */
    padding: 20px;
  	background-color: #D2F2B3
}

/*2. Headings & Typography Hierarchy*/
h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

/*Applies matching cleaner font scales to all subheadings */
div {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Links color before clicked */
a:link {
    color: #0066cc; /* Standard blue color */
}

/* 2. Links color after clicked */
a:visited {
    color: #551a8b; /* Standard purple color */
}

