
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

:root {
    --primary-orange: #ff6600ff;
    --primary-blue: #002280ff;
    --secondary-blue: #000031ff;
}

html {
    height: 100%;
}
body {
    font-family: sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
 }

a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-style: dashed;
}

a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
    text-decoration-style: dashed;
}

li {
    padding-left: 0.8rem;
}

/*----- Header Section -----*/
.header-background {
    width: 100%;
    background-color: #FFF;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header {
    width: 100%;
    background-color: #FFF;
    color: #000;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 10rem;
}
.logo {
    max-height: 10rem;
}
#logo-link {
    margin: 0;
    padding: 0;
    height: 10em;
}

/*----- Content Section -----*/
 .content {
    font-size: 1.25rem; /* Base font size, adjust as needed (15-25px for web) */
    font-weight: 300;
    max-width: 1200px;
    flex: 1;
    line-height: 1.6;
    margin: 1rem auto; /* Center the content */
    padding: 1em;
 }
 .content p {
    margin-bottom: 1em; /* Adds space below each paragraph */
 }
.overline {
    font-variant-caps: all-small-caps;
}

/*----- Home Layout -----*/
.container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}
.text-box {
    text-align: left;
}
.text-box h1  {
    text-align: center;
}

.seperator-space {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.seperator-space-small {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.seperator-bar {
    line-height: 0;
    border-bottom: 2px solid var(--primary-orange);
}

.hero {
    font-weight: bold;
    font-size: 2.5rem;
    text-wrap: balance;
    margin-bottom: 2rem;
}
