@font-face {
  font-family: "bubble";
  src: url("/assets/bubble.woff2") format("woff2"), url("/assets/bubble.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "drawn";
  src: url("/assets/drawn.woff2") format("woff2"), url("/assets/drawn.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Times Dot Regular */
@font-face {
  font-family: "Times_Dot";
  src: url("/assets/TimesDotRom.woff2") format("woff2"), url("/assets/TimesDotRom.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Times Dot Bold */
@font-face {
  font-family: "Times_Dot";
  src: url("/assets/TimesDotBol.woff2") format("woff2"), url("/assets/TimesDotBol.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
/* Times Dot Italic */
@font-face {
  font-family: "Times_Dot";
  src: url("/assets/TimesDot-Italic.woff2") format("woff2"), url("/assets/TimesDot-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
html, body {
  margin: 0;
  padding: 0;
}

#mainContent {
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

#mainHeader {
  margin-top: 24px;
  margin-left: 24px;
  left: 24px;
  top: 24px;
  background-color: white;
  margin-bottom: 40px;
  height: min-content;
}

a {
  text-decoration: none;
}
a h1 {
  font-family: "bubble";
  text-decoration: none;
  color: #DD394A;
  margin: 0px;
  font-size: 32px;
}

p {
  font-family: "Times_Dot";
  margin: 0px;
}

#nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
#nav #squiggleBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 24px;
  pointer-events: none;
  z-index: 1;
  display: block;
}
#nav #squiggle {
  width: 100%;
  height: 100%;
  display: block;
}
#nav .nav-item {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#nav nav {
  display: block;
  font-family: drawn;
  color: black;
  font-size: 24px;
}
#nav nav:hover {
  color: #DD394A;
}

#drawingList {
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  margin-left: 12px;
  overflow-x: scroll;
}
#drawingList .work {
  width: min-content;
  margin-left: 12px;
  margin-right: 12px;
}
#drawingList .work .workImage img {
  height: 60vh;
}
#drawingList .work .workText {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid black;
  margin-top: 24px;
}
#drawingList .work .workText div {
  display: flex;
  flex-direction: column;
}
#drawingList .work .workText p {
  margin: 0px;
  margin-top: 4px;
}

#aboutPage {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  margin: 24px;
}
#aboutPage #aboutText {
  width: 30vw;
  font-size: 20px;
  min-width: 400px;
  max-width: 600px;
}
#aboutPage #aboutText a {
  font-style: italic;
}
#aboutPage #aboutText a p {
  margin: 0px;
}
#aboutPage #aboutText #mobileCredit {
  display: none;
}
#aboutPage #aboutImage {
  width: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
#aboutPage #aboutImage p {
  margin: 0px;
  font-size: 20px;
  text-align: right;
}
#aboutPage #aboutImage img {
  width: 100%;
}

@media (max-width: 900px) {
  #mainContent {
    grid-template-rows: auto 1fr;
  }
  #mainHeader {
    margin-left: 12px;
    margin-top: 12px;
    margin-bottom: 40px;
    left: 12px;
    top: 12px;
  }
  #drawingList {
    margin-left: 0;
  }
  #drawingList .work {
    margin-left: 8px;
    margin-right: 8px;
  }
  #drawingList .work .workImage img {
    height: 70vh;
  }
  #aboutPage {
    flex-direction: column-reverse;
    justify-content: end;
    align-items: stretch;
    margin: 12px;
  }
  #aboutPage #aboutText, #aboutPage #aboutImage {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-size: 18px;
  }
  #aboutPage #aboutText #mobileCredit, #aboutPage #aboutImage #mobileCredit {
    display: block;
    margin-top: 16px;
  }
  #aboutPage #aboutImage {
    justify-content: right;
    align-items: flex-end;
    width: 30vw;
  }
  #aboutPage #aboutImage img {
    width: 100%;
  }
  #aboutPage #aboutImage p {
    display: none;
  }
}
@media (max-width: 700px) {
  #mainHeader {
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 12px;
    margin-bottom: 24px;
    left: 0;
    top: 0;
    text-align: center;
  }
  #mainHeader #home {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #mainHeader #home a h1 {
    font-size: 28px;
    text-align: center;
    margin: 0 auto;
  }
  #mainHeader #nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    width: calc(100vw - 16px);
    gap: 0px;
  }
  #mainHeader #nav div {
    margin: 0px;
  }
  #mainHeader #nav nav {
    font-size: 4.5vw;
  }
  #mainHeader #squiggle {
    height: 16px;
  }
  #aboutPage {
    overflow-y: scroll;
  }
  #drawingList {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  #drawingList .work {
    width: calc(100vw - 16px);
    margin: 0 8px 32px 8px;
    align-items: center;
  }
  #drawingList .work .workImage {
    width: 100%;
  }
  #drawingList .work .workImage img {
    width: 100%;
    height: auto;
    max-width: 100vw;
  }
  #drawingList .work .workText {
    border-bottom: 1px solid black;
    border-top: none;
    margin-top: 8px;
  }
  #drawingList .work .workText p {
    margin: 0px;
    margin-top: 4px;
  }
}

/*# sourceMappingURL=main.css.map */