/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.global {
  display: block;
  position: static;
}

.page-wrapper {
  display: flex;
}

a:link, a:visited, a:hover, a:active {
 color: white;
 text-decoration: none;
}

.header {
  z-index: 5;
  background-color: #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
}

.nav-wrapper {
  z-index: 5;
  border-bottom: 1px solid #FFF;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 5vh;
  display: flex;
}

.html {
  width: 0;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

html, body {
  height: 100vh;
  box-sizing: border-box;
  margin: 0px;
}

* {
  box-sizing:border-box;
}

.header_logo-image {
  filter: none;
  width: 9.7em;
}

.header_right {
  align-items: center;
  display: flex;
}

.margin-right {
  margin-right: .83em;
}

.margin-left {
  margin-left: .83em;
}

.margin-top {
  margin-top: .83em;
}

.margin-bottom {
  margin-bottom: .83em;
}

.inline-block {
  max-width: 100%;
  display: inline-block;
}

.header_menu {
  flex-direction: column;
  justify-content: space-between;
  height: 1.5em;
  display: flex;
}

.left-rail {
  border-right: 1px solid #000;
  width: 25vh;
  height: 100%;
  position: fixed;
  top: 3.47em;
}

.left-rail-mid {
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 90vh;
  display: flex;
  position: relative;
}

.container {
  z-index: 1;
  flex: 0 auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: .83em;
  position:relative;
}

.left-rail-footer {
  border-right: 1px solid #FFF;
  color: #000;
  width: 100%;
  height: 5vh;
}

.footer-legal {
  justify-content: space-between;
  display: flex;
}

.page-content {
  width: 100%;
  margin-top: 5vh;
  margin-left: 25vh;
  position: relative;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding-left: 0;
  display: grid;
}

.grid.home {
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: none;
}

.grid.portfolio {
  grid-template-columns: 1fr 1fr; 
}

.grid-notlink {
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 45vh;
  min-height: 24em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.full-height-grid {
  flex-direction: row;
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

.grid-link {
  text-transform: none;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 90vh;
  text-decoration: none;
  display: flex;
  position: relative;
  background-position: center;
  filter: invert(0);
  transition: filter 0.3s, border 0.3s;
}

.grid-link:hover {
  text-decoration: none;
  filter: invert(1);
  border: 1px solid #000;
}

.grid-hover {
  z-index: 0;
  background-color: #871374;
  width: 0%;
  height: 100%;
  position: absolute;
  transition: width 2s;
}

.grid-hover:hover {
  width: 100%;
}

h1 {
 color: white; 
}

p {
  color: white;
  font-size: 18px;
}
  
.text-p {
 
 font-family: 'oldengl';
 font-size: 18px;
  
}

