/* 1. GLOBAL PAGE LAYOUT STYLES */
body {
    /* Sets the default typography across the entire page */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 144px;
    line-height: 1.6;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;

    
    /* Center aligns the main page box */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;

   
}
 a {
  color: #FFFFFF; /* Changes link color to orange */
}
/* 2. HEADINGS (FONT STYLE) */
h1, h2, h3 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 24px;
    margin-bottom: 12px;
        text-align: center;

}

h1 {
    font-size: 2.5rem; /* 40px scale */
    border-bottom: 2px solid #FFFFFF;
    padding-bottom: 8px;
}

h2 {
    font-size: 2rem; /* 32px scale */
}

/* 3. PARAGRAPHS & TEXT BLOCKS */
p {
    margin-bottom: 16px;
    text-align: center;
}

/* 4. UTILITY TEXT MODIFIERS */
.text-italic {
    font-style: italic;
}

.text-bold {
    font-weight: bold;
}

.text-muted {
    color: #FFFFFF;
    font-size: 0.9rem;
}
