
@charset "utf-8";
/* CSS Document */
/* Author: Kiran S. Dwarkan */

::selection {
    color: white; 
    background: gray;
}

::-moz-selection {
    color: white; 
    background: gray;
}

html {
    font-family: 'Noto Sans', sans-serif;
    font-size: 62.5%;
    line-height: 175%;
    margin: 0;
}

h1,h2,h3,h4,h5,p,b {
    margin: 0 0.8rem;
    padding: 0 0.8rem;
}

a {
    color: #008ba2;
    line-height: 1.4rem;
    padding: 0 0.4rem;
}

a:hover {
    color: #fcfcfc;
    background-color: #008ba3;
    border-radius: 0.4rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 3.6rem;
    padding-bottom: 0.4rem;
}

h2 {
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 3rem;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.4rem;
    background-color:  #80cbc4;
    /* background-color: #9FC088; */
    padding: .4rem 1.6rem;
    margin: .4rem 0;
}

@media only screen and (min-width: 1024px) {
    h3 {
        border-radius: .4rem;
    }
}

h4 {
    color: #008ba2;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2rem;
    /* text-align: center; */
    padding-bottom: 0.4rem;
}

h5 {
    color: #008ba2;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-left: 0.8rem;
    padding-bottom: 0.4rem;
}

p, ul, dl {
    font-size: 1.4rem;
    line-height: 1.75em;
}

dd {
    margin-inline-start: 0.8rem;
}

b {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fcfcfc;
    margin: 0;
    display: flex;
    justify-content: center;
}

.darkText {
    color: #008ba2;
}

/* Page Elements */
.pageHolder {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #F1F0E8;
}

.pageHeader {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* padding-top: 1.6rem; */
    /* padding-bottom: 1.6rem; */
}

.contentHolder {
    display: flex;
    flex-direction: column;
    align-self: center;
    max-width: 1024px;
}

.rowContentHolder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* max-width: 1024px; */
}

.pageHeaderImage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    max-width: 1024px;
}

.pageHeaderContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: center;
    padding-top: 0.8rem;
}

@media only screen and (min-width: 1024px) {
    .pageHeaderContent {
        width: 1024px;
    }
}

.mainContent {
    padding: 1.6rem 0;
}

.pageFooterContainer {
    display: flex;
    /* width: 100%; */
    /* background-color: #00bcd4; */
    background-color: #EEE0C9;
    min-height: 4.8rem;
    justify-content: center;
    align-items: center;
}

p.pageFooter {
    color: #000;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 400;
    text-align: center;
}

a.pageFooter {
    color: #000;
    text-decoration: none;
}

a.pageFooter:hover {
    color: #fcfcfc;
}

.bannerImage {
    max-width: 100%;
    height: auto;
}

 /*End Page Elements */
