body {
    --primary-light: rgba(39, 126, 69, 0.96);
    --accent: #633475ff;
    --font: rgb(217, 232, 222);

    
    font-family: sans-serif;
    color: var(--font);

    width: 100vw;
    
}

#background {
    background-image: url('/img/bgtest.jpg');
    width: 100vw;
    height: 100vh;
    background-size: cover;
    position: fixed;
}

#content {
    position: absolute;
    width: 100vw;
}

section, header {
    max-width: 800px;
    background: var(--primary-light);
    margin: 40px auto;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 10px;
}

header {
    display: flex;
    align-items: center;
}

header.splash {
    flex-direction: column;
}

header.splash nav {
    margin: 20px 0;
}

header.splash p {
    text-align: center;
    font-size: 18px;
    margin: 0;
}

h1 {
    font-size: 40px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
}

h1  img {
    width: 270px;
}

header a {
    text-decoration: none;
}

small {
    font-size: 18px;
    margin-top: 5px;
    color: var(--font);
}

nav {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
}

nav a {
    color: var(--font);
    padding: 10px;
    font-size: 24px;
    text-decoration: underline;
}

.inner {
    margin: 0 auto;
}

h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: var(--accent);
}

section img {
    width: 100%;
    border: 4px solid var(--accent);
    border-radius: 10px;
}

ul {
    list-style: disc;
    margin: 10px 0;
}

li {
    margin-left: 20px;
}

p, li {
    line-height: 1.6em;
}

h4 {
    font-size: 20px;
    margin: 15px 0 5px 0;
    color: var(--accent);
    font-weight: 800;
}

h5 {
    font-size: 18px;
    margin: 15px 0 5px 0;
    color: var(--accent);
    font-weight: 800;
    line-height: 1.4em;
}

ul.compact {
    font-style: italic;
}

ul.compact li {
    line-height: 1.4em;
}

strong {
    font-weight: 800;
}

a {
    color: var(--font);
    font-weight: bold;
}


section.testimonial {
    padding: 20px 40px;
    color: white;
    background: #633475ff;
    font-size: 18px;
    position: relative;
}

.aside {
    background: #633475ff;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 140px;
}

.aside h5 {
    color: white;
    text-align: center;
}


.quotemark {
    font-size: 65px;
    position: absolute;
}

.quotemark.open {
    top: 3px;
    left: 5px;
}

.quotemark.close {
    bottom: -30px;
    right: 5px;
}

.icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons img {
    height: 80px;
    margin: 10px;
}
