body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Futura", sans-serif;
    font-size: 1em;

}
    
#container {
    flex: 1;
        
}
    
header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: white;

}

.logo {    
    flex: 1;
/*    background-color: aqua;*/
    background-color: white;
    margin: 0;
    padding: 10px 10px;
    padding-top: 20px;
}
    
h1 {
    letter-spacing: 10px; 
    font-family: Raleway;
    font-size: 32px;
    color: rgb(218, 28, 92);
}

.wordmark {
    flex: 4;
/*    background-color: crimson;*/
    background-color: white;
    margin: 0.2em;
    padding: 0; 
    text-align: left;
    font-family: Raleway;
}

.row {
    display: flex;
    flex-direction: column;
}



.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

.navcol {
/*    background-color: pink;*/
    background-color: white;
    margin: 0.2em;
    padding: 5px; 
    text-align: left;
}

a {
    color: black;
    text-decoration: none;
    
}

a:hover {
	color: rgb(218, 28, 92);
}


/*
.address {
    flex: 5;
}

.contact {
    flex: 5;
}

.insta {
    flex: 1;
}
*/
    
.col {
    flex: 1;
/*    background-color: lightgreen;*/
    margin: 0.2em;
    padding: 5px; 
    text-align: center;
}

.holistic-blurb {
	background-color: white;
	color: rgb(218, 28, 92);
	font-size: 0.75em;
/*	margin: 10px 75px 10px 75px;*/
	text-align: center;
/*	padding: 10px;*/
}
    

    
/*Gallery CSS*/

.navgallery {
	background-color: white;
	display: flex;
    flex-direction: column;
	flex-wrap: wrap;
	/*padding: 10px;*/
	max-width: 90vw;
	min-height: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
}

box {
	/*background-color: floralwhite;
 	box-sizing: content-box;*/
	width: calc(33.33%-10px);
	/*border: 2px solid blue;*/
	padding: 10px;
	flex: 1 1 250px;
}
box>img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}
.caption {
	background-color: rgb(218, 28, 92);
	color: white;
	text-align: center;
	padding: 15px;
}
.navbutton {
	padding: 0;
	border: none;
	background: none;
	font-family: 'Dosis', sans-serif;
	font-size: 1em;
}
.navbutton:hover {
	background-color: rgba(218, 28, 92, 1);
	opacity: 0.8;
	cursor: pointer;
}



footer {
	background-color: white;
	color: rgb(218, 28, 92);
	font-size: 10px;
	padding: 20px;
	width: 100%;
	height: 20px;
	text-align: center;
	position: relative;
	bottom: 0;
	margin-bottom: 0;
	
}
    

    
@media all and (min-width: 600px) {
    .row {
        flex-direction: row;
    }
    
    .nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    
}
    .navcol {
    padding-right: 50px;
    width: auto;
    }
        
    .wordmark {
        flex: 8;
        padding-top: 20px;
    }
        
    .navgallery {
        flex-direction: row;
    }
    
    .holistic-blurb {
	background-color: white;
	color: rgb(218, 28, 92);
	font-size: 1.0em;
	margin: 10px 75px 10px 75px;
	text-align: center;
	padding: 10px;
}
}
    