/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Sammie Anselmo */

/* Typefaces */
@font-face{
    font-family: 'Caslon';
    src: url('../type/caslon_regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'Caslon';
    src: url('../type/caslon_italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face{
    font-family: 'Michroma';
    src: url('../type/michroma_regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Typography */
i, em{
  font-style: italic;
}

/* Links */
a, a:visited, button{
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
     -moz-transition: opacity 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
       -o-transition: opacity 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
          transition: opacity 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
a:hover, button:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.active{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.active:hover{
  text-decoration: none;
}

/* Highlight Color */
::-moz-selection{
  background-color: #54a5c2;
}
::selection{
  background-color: #54a5c2;
}

/* Top-Level */
html{
  scroll-behavior: smooth;
  font-size: 18px;
  font-family: 'Caslon', serif;
/*  font-variant-numeric: oldstyle-nums; */
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: white;
  color: black;
}

/* Body */
body{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
}

.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
  z-index: 100;
}

.navigation{
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.about_container{
  margin: 1rem;
  width: calc(100vw - 2rem);
  height: calc(100svh - 2rem);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -100;
}

.container{
  margin-left: 1rem;
  margin-right: 1rem;
}

.bio_container{
  width: 960px;
}

.bio p{
  margin-bottom: 1rem;
  line-height: 1.25rem;
}

.description{
  text-align: center;
  width: 100%;
  margin-top: 0.7rem;
  margin-bottom: 6rem;
}

@media (max-width: 960px){
  .bio_container{
    width: 100%;
  }
}



