
:root{
  --text: #000;
  --bg: #fff;
  --nm-text: #fff;
  --nm-bg: #000;
  --standard-radius: 3px;
  --layout-gap: 1em;
  background-color: #000;
}


#grid-wrapper{
  /* width: 90vw; */
  min-width: 480px;
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr 16fr 2fr 1fr;
  grid-auto-rows: auto;
  gap: var(--layout-gap);
  background-color: #fff;
}


.grid-fullWidth{
  grid-column: 2 / -2;
  grid-row: auto;
  /* background-color: #0f0; */
}

.grid-leftColumn{
  grid-column: 1;
  grid-row: auto;
}

.grid-centerColumn{
  grid-row: auto;
  grid-column: 3 / -3;
  /* min-width: 70vw; */
}


#content-hero{
  width: 100vw;
  grid-column: 1 / -1;
  grid-row: auto;
  overflow: hidden;

  display: flex;
  margin-bottom: 2em;
}

#content-hero img{
  object-fit: cover;
  width: 100%;
  
}

#content__headshot{
  width: 30vw;
  max-width: 400px;
}

#content-topNav{
  text-align: center;
}

#content-topNav a{
  font-size: 2em;
  font-weight: 400;
}

#content-topNav a::after{
  content: '.';
}

#content-topNav__homeAnchor{
  --text: #AAA;
  color: var(--text);
}

#content-topNav .style-nav--here {
  --text: #AAA;
  color: var(--text);
}

.layout-flexRow{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* background-color: #888; */
  align-items: center;
  gap: 1em;
}

.gameFrame{
  border: thin solid black;
  margin: 2em 0;
  padding: .5em 1em .5em .5em;
}

.layout-flexRow br{
  line-height: 2em;
}

/* .layout-flexRow > * {
  margin: 0 10px;
} */

.layout-flexRow p {
  margin-top: 0;
  padding-top: 0;
}

.layout-flexRow img{
  max-width: 100%;
  height:auto;
}


h1, h2, h3, h4, h5, h6{
  margin: 0em;
}

h1{
  font-size: 6em;
  text-align: center;

}

h2{
  font-size: 2em;
}

a{
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

a:hover{
  text-decoration: underline;
}

body{
  font-family: 'Lato', sans-serif;
  /* line-height: auto; */
  margin: 0em;
}
