/* 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;
}
/* -------------------------------------------------------------------------- */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body {
  background: #EFE8E0;
  box-sizing: border-box;
  color: rgba(0,0,0,0.75);
  font: 16px/150% Helvetica, "Helvetica Neue", sans-serif;
  min-height: 100vh;
  min-width: 100vw;
  padding: 0;
}

@media screen and (min-width: 800px) {
  header {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: 1fr auto;
    gap: 0px 0px;
    grid-template-areas:
      "Name Title"
      "About Etc";
    height: 100vh;
  }
}

header.sneak-peek {
	height: 90vh;
}

h1, h2 {
  font-size: 1.5rem;
  line-height: calc(1.5rem*1.5);
}
h1, h2, h3 {
  font-weight: 600;
  padding: 0 0 1rem 0;
}

h1 {
  display: block;
  padding: 32px 32px 0;
  background-size: cover;
  background-color: #9c6c57;
  background-image: url('/img/img-noise-2000x2000.png');
}
@media screen and (min-width: 800px) {
  h1 {
    grid-area: Name;
    padding: 32px;
  }
}

h2 {
  padding: 0 32px 32px;
  background-size: cover;
  background-color: #9c6c57;
  background-image: url('/img/img-noise-2000x2000.png');
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  h2 {
    grid-area: Title;
    padding: 32px;
    justify-self: right;
    width: 100%;
    text-align: right;
    font-weight: 600;
  }
}

h3 {
  padding: 0 32px 32px;
  font-weight: 400;
}
@media screen and (min-width: 800px) {
  h3 {
    grid-area: Etc;
    padding: 32px;
    align-self: end;
    justify-self: end;
  }
}

p {
  display: block;
  padding: 0 0 1rem 0;
  max-width: 60ch;
}

a {
  border-bottom: 2px solid rgba(0,0,0,0.75);
  color: rgba(0,0,0,0.75);
  text-decoration: none;
}
a:hover {
  color: rgba(0,0,0,1);
}

.home-about {
  grid-area: About;
  align-self: end;
  padding: 32px;
}
.home-about p:last-child {
  padding-bottom: 0;
}

.logo {
  animation: spin 15s linear infinite;
  float: right;
  height: 64px;
  width: 64px;
  padding: 32px;
}
@media screen and (min-width: 800px) {
  .logo {
    height: 128px;
    float: none;
    left: 66%;
    position: absolute;
    top: 50%;
    width: 128px;
    margin-top: -64px;
  }
}

@media screen and (min-width: 800px) {
  .rotator {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}


article.process {
	background: #C6D0C9;
}
article.process h1 {
	background-color: inherit;
	background-image: none;
}