html {
    /* background-color: rgb(255, 243, 228); */
    /* background-color: #2E0F38 */
    /* background-color: #4b2644; */
        background-color: #295c44;


}

figcaption {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}

body {
    margin: 0;
    min-width: 600px;
}

/* nav misc */
header {
    background-image: url(../images/banner.jpg);
    padding: 15px;
}

header {
    display: flex;                 
    justify-content: space-between;
    align-items: center;           
    padding: 15px 20px;            
    background-image: url(../images/banner.jpg);
    border-bottom: 4px solid rgb(234, 138, 186);
}

header > a:first-child {
    color: black;
    text-decoration: none;
    font-size: 1.6em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-left: 15px;
    
}

.navbar {
    display: flex;                 
    gap: 20px;                     
    font-size: 1.1em;              
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}

/*nav links*/
.navbar a:link, a:visited {
    color: rgb(39, 45, 41);
}

.navbar a:hover {
    color: rgb(230, 147, 174);
}

.navbar a:active {
    color: rgb(241, 255, 189);
}

/*cta link*/
.cta a:link {
color: rgb(200, 111, 220);
}

.cta a:visited {
color: rgb(145, 21, 145);
}

.cta a:hover {
    color: rgb(248, 124, 143);
}

/*font family misc*/
section /*general sans serif display to be altered in other css and etc*/ {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/*footer*/
footer {
    background-image: url(../images/banner.jpg);
    background-size: cover;
    padding: 1.5px;
    padding-left: 20px;
    clear: both;
    font-style: italic;
    border-top: 4px solid rgb(234, 138, 186);
}