@font-face {
    font-family: 'playfair_displayitalic';
    src: url('playfairdisplay-italic-variablefont_wght-webfont.woff2') format('woff2'),
         url('playfairdisplay-italic-variablefont_wght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'playfair_displayregular';
    src: url('playfairdisplay-variablefont_wght-webfont.woff2') format('woff2'),
         url('playfairdisplay-variablefont_wght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotoregular';
    src: url('roboto-regular-webfont.woff2') format('woff2'),
         url('roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* libre-baskerville-italic - latin */
/* Libre Baskerville */
@font-face {
  font-family: 'libre-baskerville-italic';
  font-style: italic;
  font-weight: 400;
  src: local(''),
       url('librebaskerville-italic-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('librebaskerville-italic-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('librebaskerville-italic-webfont.woff') format('woff'), /* Modern Browsers */
       url('LibreBaskerville-Italic.ttf') format('truetype'); /* Safari, Android, iOS */
}
/* libre-baskerville-regular - latin */
@font-face {
  font-family: 'libre-baskerville-regular';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('librebaskerville-regular-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('librebaskerville-regular-webfont.woff') format('woff'), /* Modern Browsers */
       url('LibreBaskerville-Regular.ttf') format('truetype');
}
/* libre-baskerville-700 - latin */
@font-face {
  font-family: 'libre-baskerville-700';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('librebaskerville-bold-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('librebaskerville-bold-webfont.woff') format('woff'), /* Modern Browsers */
       url('LibreBaskerville-Bold.ttf') format('truetype');
}

:root {
/*
  --header-font: 'playfair_displayregular', 'Times', 'Times New Roman', serif;
  --copy-font: 'robotoregular', "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
*/
  --header-font: 'robotoregular', "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  --copy-font: 'libre-baskerville-regular', 'Times', 'Times New Roman', serif;
  --menu-font: var(--header-font);
  --light-copy-color: rgb(131, 131, 144);
  --dark-copy-color: #000;
  --link-color: #317180;
  --light-link-color: rgba(251, 246, 144, 1.0);
  --selected-color: #ff0000;
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-sarah: cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--copy-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.06vh;
  line-height: 3.47vh;
  font-size: 2.04vh;
  color: var(--dark-copy-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--light-copy-color);
  font-family: var(--header-font);
  font-weight: 700;
}

.h4sub
{
	color: var(--light-copy-color);
	font-family: var(--header-font);
	font-weight: 400;
	line-height: 150%;
	padding-bottom: 3vh;
}


a {
  color: var(--link-color);
  text-decoration: none;
  font-style: italic;
  position: relative;
}

a::after {
  position: absolute;
  left: 0;
  top: 3.4vh;
  content: "";
  display: inline-block;
  border-bottom: 1px solid var(--link-color);
  width: 0%;
  transition: width .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a:hover::after {
  width: 100%;
}

.no-select {
  webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.desktop-only {
  display: inherit;
}

.mobile-only {
  display: none;
}

@media (max-width: 800px) {
  .desktop-only { display: none; }
  .mobile-only { display: inherit; }
}

.content {
  max-width: 900px;
  margin: 10vh auto;
}
