@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400&family=EB+Garamond:ital,wght@0,400;0,700;0,800;1,400&family=Sorts+Mill+Goudy:ital@0;1&family=Vollkorn:ital,wght@0,400;0,700;1,400&display=swap');

:root{
  --blue0: #fcf8ea;/*#ECF4FF;*/
  --blue1: #8FB7EE;
  --blue2: #6298E3;
  --blue3: #3F80D9;
  --blue4: #1D67CE;
  --blue5: #0A4CA8;
}

body{
  font-family: 'Vollkorn', 'Sorts Mill Goudy', serif;
  background: var(--blue0);
  color: var(--blue5);
  margin-top: 0;
}

h3{
  font-size: 1.25em;
}

nav{
  position: sticky;
  top: 4.5em;
  background: var(--blue0);
  z-index: 1;
}

nav ul{
  display: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 80%;
  margin: auto;
/*   background-color: var(--blue2); */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.25em;
}

nav ul li a{
  display: block;
  text-align: center;
  padding: 1em;
  text-decoration: none;
  color: var(--blue5);
}

nav ul li a:hover{
  background-color: var(--blue3);
  color: var(--blue0);
}

.active {
  color: var(--blue2);
}

img.banner{
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
}

div.banner{
  position: relative;
}

.imageText{
  position: absolute;
  left: 2em;
  top: 55%;
  transform: translate(0, -50%);
  color: var(--blue0);
  font-size: 2em;
  text-shadow: 2px 2px 2px black;
}

#headshot{
  width: 25%;
  object-fit: cover;
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}

#underpic{
  width: 80%;
  margin: auto;
}

header{
  background-color: var(--blue0);
  text-align: center;
  font-family: 'Sorts Mill Goudy', serif;
}

header h1{
  position: fixed;
  top: 0;
  text-align: center;
  z-index: 3;  
  background-color: var(--blue0);
  width: 100%;
  margin: 0;
  padding: 0.5em 0;
  
}

#spacer {
  height: 6em;
}

header h2{
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0.83em;
}

nav:hover ul{
  display: flex;
  z-index: 1;
}

.hamburger {
  margin: auto;
  display: block;
  background-color: var(--blue0);
}

.row .left h3{
  margin-bottom: 0;
}

.row .left p{
  margin-top: 0;
}

a{
  color: var(--blue5);
  text-decoration: none;
}

address {
  font-style: unset;
  display: inline;
  font-size: 1.17em;
}

p {
  font-size: 1.17em;
}

ul, li {
  font-size: 1.17rem;
}

footer a, #footer a {
  text-decoration: underline;
}

@media (min-width: 600px){
  header h1{
    font-size: 2.5em;
  }

  nav{
    position: sticky;
    top: 6em;
    background: var(--blue0);
    z-index: 1;
  }
  
  nav ul{
    display: flex;
    flex-direction: row;
  }

  .left{
    float: left;
  }
  .right{
    float: right;
  }

  .row{
    overflow: auto;
  }

  main{
    min-width: 500px;
    width: 70%;
    max-width: 700px;
    margin: auto;
  }

  nav ul li{
    width: 100%;
  }

  .hamburger{
    display: none;
  }

  footer, #footer {
    min-width: 500px;
    width: 70%;
    max-width: 700px;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
}
/* 
#privacyPolicy {
  font-size: 0.75rem;
  margin-bottom: 1em;
  margin-left: 2em;
  margin-right: 2em;
}

#privacyPolicy p {
  padding: 0;
  margin: 0;
}

#privacyPolicy h4 {
  margin: 0;
} */