@font-face{
  font-family: 'Routed Gothic';
  src:url(../fonts/RoutedGothicWide.woff2) format('woff2');
  font-weight: regular;
}

@font-face{
  font-family: 'Monument Grotesk';
  src:url(../fonts/monumentgrotesk-regular-webfont.woff2) format('woff2');
  font-weight: regular;
}

body {
  font-family: 'Routed Gothic', sans-serif;
  font-weight: regular;
  font-size: 11pt;
  line-height: 1.2;
  background-color: WhiteSmoke;
  padding: 0 6px;
  margin-bottom: 6rem;
  display: flex;
}

header, .about {
    width: calc(100% - 12px);
}

header {
    position: fixed;
    z-index: 1001;
    top: 0;
    padding-top: 6px;
    background-color: WhiteSmoke;
}

.lynx {
    color: blue;
}


.name, .pathfinder {
    color: black;
    text-decoration: none;
}

.name:hover, .pathfinder:hover {
    color: darkgrey;
}

.selected {
    font-weight: bold;
}

.grid, .about {
    border-bottom: 1px solid black;
}

.about {
    visibility: hidden;
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 999;
    background-color: WhiteSmoke;
    position: fixed;
    top: 0;
}

@media screen and (max-width: 600px) {
    .about {
        margin-top: 4rem;
    }
}

.grid {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.33rem;
}

@media screen and (max-width: 600px) {
    .grid {
        flex-direction: column;
    }
}

.left, .right {
    display: flex;
    justify-content: space-between;
}

.left {
    width: 30%;
}

.right {
    width: 40%;
}

@media screen and (max-width: 600px) {
    .left, .right {
        width: 100%;
        margin-bottom: 0.33rem;
    }
}

button {
    font-family: 'Routed Gothic';
    background-image: linear-gradient(to top, #e3e3e3, #f5f5f5);
    border: 1px solid #999999;
    border-radius: 4px;
    padding: 3px 5px;
    color: black;
    text-decoration: none;
    text-align: justify;
    text-justify: inter-character;
    font-size: 9pt;
    line-height: 1;
    margin-left: 0;
}

button:hover {
  background-image: linear-gradient(to top, #d9d9d9, #ebebeb);
  cursor: default;
}

.clicked {
    /* font-weight: bold; */
    box-shadow: 0px 0px 10px 0px orange;
}

.rodeo, .magicDyke {
    display: none;
}

.projectWrapper {
    margin-top: 6rem;
}

.projectStack {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.projectHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid black;
    margin-bottom: 1rem;
}

.projectSubcategory {
    display: flex;
    flex-direction: row;
}

.subcategoryTitle {
    
}

.subcategoryLeft {
    width: calc(30% - 16pt);
}

.subcategoryRight {
    width: calc(70% + 16pt);
}

.title {
    margin-bottom: 1rem;
}

.date {
    
}

.caption {
    border-bottom: 1px solid black;
    margin: 1rem 0;
    padding-bottom: 1rem;
}

.imageScroll {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    margin-bottom: 1rem;
    width: 100%;
}

.imageGrid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.imageGrid img {
    margin-right: 6px;
    margin-bottom: 6px;
}

/* .opener::before {
    content: "";
    position: relative;
} */

.large img {
    height: 70vh;
}

.medium img {
    height: 50vh;
}

.small {
    height: 30%;
}

.construction {
    position: fixed;
    width: 100%;
    bottom: 6px;
    display: flex;
    justify-content: center;
}

h3 {
    border-radius: 20pt;
    padding: 3px 12pt;
    background-color: orange;
    font-style: italic;
}

