@font-face {
    font-family: CenturyGothic;
    src: url(centurygothic.woff);
}

:root{
    --sans-font: CenturyGothic, sans-serif;
    --bg: #ffa630; /*sonja's orange*/
    --accent-bg: #ad975c; /*sonja's brown*/
    --accent-bg2: #ffbca2; /*sonja's salmon*/
    --text: #ad975c;
    --text-light: #ad975c;
    --border-width: 0px;
}

/*whole page things*/
html{
    font-family: CenturyGothic;
    color:var(--text);
    border:1.15rem solid var(--accent-bg);
}

body{
    font-family: CenturyGothic, sans-serif;
}

/*header elements*/
body > header{
    background-color: var(--accent-bg2);
    text-align: left;
}

div.name > h1 {
    font-size: 7em;
    padding-inline: 1rem;
}

div.name > h3 {
    font-size: 1.5em;
    padding-inline: 0.5rem;
}

/*get the header elements arranged*/
div.name {

    float: left;
    padding-inline: 0rem;

}

div.navigationBar {
    float: right;
}

/*make those header links pretty*/
div.navigationBar > h2 > a,a:visited {
    text-decoration: none;
    color: var(--text);
}

div.navigationBar > h2 > a:hover {
    text-decoration: underline;
}


/*image gallery stolen from the internet*/
.grid {
	max-width: 10000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.grid-item {
	min-width: 500px;
	max-width: 500px;
	flex: 1 1 500px;
	padding-left: .5rem;
	padding-right: .5rem;
	margin: 1rem;
    background: var(--accent-bg2);
}

.wrapper {
	min-height: 100vh;
	padding: 2rem 0;
	text-align: center;
}

.grid-item figure {
	padding: 1em;
	margin: 0;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05);
}

.grid-item figure img {
	display: block;
	max-width: 100%;
}

.grid-item figcaption {
	display: block;
	padding: .625rem .5rem;
	background: var(--accent-bg);
    color: var(--bg);
}

/*about page*/
div.bio{
    background: var(--accent-bg2);
    padding: 0.75em;
    margin: 1em;

}

div.statement{
    background: var(--accent-bg);
    color: #ffbca2;
    padding: 0.75em;
    margin: 1em;
}