:root {
    --periwinkle: #d8dcffff;
    --periwinkle-2: #aeadf0ff;
    --rosy-taupe: #c38d94ff;
    --rosewood: #a76571ff;
    --dusty-grape: #565676ff;

    --header-color: var(--rosewood);
    --max-width: 850px;
    --header-max-width: 1000px;
    overflow-y:scroll;;
}

body {
    position: relative;
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: var(--dusty-grape);
}

.graphic {
    position: fixed;   /* stays in place when scrolling */
    inset: 0;
    width: 100vw;      /* covers full viewport width */
    height: 100vh;     /* covers full viewport height */
    z-index: -1;       /* stays behind content layer */
    background-color: var(--periwinkle); 
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background-color: white;
    max-width: var(--header-max-width);
    margin: 0 auto;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: #54426B;
    font-style: italic;
    font-family: "Lato", sans-serif;
    font-size: 2.5rem;
}

.logo-list {
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 2.0rem;
}

.sublogo {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.1rem;
    padding-left: 15px;
    color: var(--rosewood);
}

header nav ul li a {
    font-family: "Lato", sans-serif;
    font-size: 1.25rem;
}


header nav ul {
    gap: 20px;
}

.top-accent {
    width: 100%;
    height: 40px;
    background-color: var(--periwinkle-2);
}
   
main {
    max-width: var(--max-width);
    margin: 0 auto;
    flex: 1;
}

article {
    padding: 10px 0;
}

footer {
    text-align: right;
    padding-bottom: 10px;
    padding-right: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;

}

.footer-links a {
    color: var(--rosewood);
}

img {
    max-width: 100%;
}

a {
    color: var(--rosewood);
}
