:root {
    --text-color: #000000;
    --background: #ffffff;
    --primary: #00bb00;
    --secondary: #008400;
    --accent: #87CEFA;
    --nav-bar-height: 6rem;
}


* {
    margin: 0;
    padding: 0;
    font-family: "Book Antiqua";
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: var(--background);
    justify-content: space-between;
    
}

main {
    color: var(--text-color );
    padding: .5rem 12%;
}

p {
    font-size: 1rem;
}


h2 {
    font-size: 2rem;
}

.call-to-action h2 {
    width: 60vw;
    color: var(--secondary);
}


.section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2em;
}


.section h2{
    color: var(--secondary);
    text-align: center;
    font-weight: lighter;
}


.section h3{
    color: var(--primary);
    text-align: center;
}


.section p{
    color: var(--text-color);
    text-align: center;
}

.tagline {
    padding: 0 1rem;
}


.news h2 {
    color: red;;
}

#central-logo {
    width: 20vw;
}

footer {
    background-color: #d0d0d0;
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-bar-height);
}

footer p{
    text-decoration: none;
}

.footer-mid{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

footer img {
    height: 2rem;
    padding: 0 2rem;
}

.footer-logo {
    height: 4rem;
    padding: 0 2rem;
}

a {
    text-decoration: none;
}
