* {
  box-sizing: border-box;
}

::selection {
  background-color: rgba(164, 140, 114, 0.3);
}

html,
body {
  overflow: hidden;
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  color: #2b2b2b;
  background-color: #f1ede8;
  font-family: "Inter", sans-serif;
  font-size: 18px;
}

.loader {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.loader .text {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f1ede8;
}
.loader .blocks {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.loader .blocks * {
  background-color: #000;
  will-change: transform;
  width: calc(100% + 2px);
  pointer-events: all;
}

main {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr min-content 1.3fr;
}
main .bigbob {
  padding: 3px 16px;
  display: grid;
  grid-template-rows: auto max-content;
}
main .bigbob .title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-weight: 900;
  z-index: -10;
  cursor: default;
  color: #a48c72;
  text-shadow: #000 1vw 1vw;
}
main .bigbob .info {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  gap: 20px;
  font-variant: small-caps;
  text-transform: uppercase;
  font-size: 14px;
}
main .bigbob .info .separator {
  background-color: #2b2b2b;
  height: 10px;
}
main .bigbob .info section:last-child {
  text-align: right;
}
main .quietjay {
  min-height: 0;
  display: grid;
  grid-template-columns: 300px min-content auto;
}
main .quietjay .menu {
  display: grid;
  grid-template-rows: auto max-content;
}
main .quietjay .menu .lilfucker {
  font-variant: small-caps;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}
main .quietjay .content {
  min-height: 0;
  overflow: hidden;
  position: relative;
}
main .quietjay .content .track {
  width: 100%;
  height: 100%;
  will-change: transform;
}
main .quietjay .content .track > article {
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #2b2b2b;
}
main .quietjay .content .track > article > .container {
  width: 100%;
  height: 100%;
}
main .quietjay .content .track > article.active {
  display: block;
}
main .quietjay .separator {
  width: 2px;
  height: 100%;
  background-color: #2b2b2b;
  transform-origin: top;
}
main .separator {
  height: 2px;
  background-color: #2b2b2b;
  transform-origin: left;
}

main .quietjay .content .what-is-this .container {
  padding: 20px;
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 100px;
}
main .quietjay .content .what-is-this .container article {
  width: 350px;
}
main .quietjay .content .what-is-this .container article .thing {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  margin-right: 4px;
  display: inline-block;
  background-color: #2b2b2b;
  border-radius: 50%;
}
main .quietjay .content .skills {
  position: relative;
}
main .quietjay .content .skills .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
}
main .quietjay .content .skills .container > section .text {
  height: 100%;
  display: grid;
  grid-template-rows: max-content max-content 1fr 1fr;
}
main .quietjay .content .skills .container > section .text > section {
  padding: 20px;
}
main .quietjay .content .skills .container > section .text .title {
  padding: 0;
  display: grid;
  grid-template-columns: auto max-content;
}
main .quietjay .content .skills .container > section .text .title .letters {
  padding: 5px 0;
  align-self: center;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  font-style: italic;
  line-height: 30px;
}
main .quietjay .content .skills .container > section .text .title .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  padding: 10px;
  font-weight: 700;
  font-style: italic;
  font-size: 50px;
  line-height: 30px;
  background-color: #2b2b2b;
  color: #f1ede8;
  cursor: default;
}
main .quietjay .content .skills .container > section .text .summary {
  align-self: center;
  padding: 20px 50px;
  font-weight: 400;
  font-size: 25px;
  line-height: 26px;
  overflow-wrap: break-word;
}
main .quietjay .content .skills .container > section .text .summary b {
  color: rgba(43, 43, 43, 0.9);
  font-weight: 600;
}
main .quietjay .content .skills .container > section .text .summary .star {
  width: 15px;
}
main .quietjay .content .skills .container > section .text .summary .star path {
  fill: #2b2b2b;
}
main .quietjay .content .skills .container > section .text .examples {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main .quietjay .content .skills .container > section .text .examples section {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 8px;
}
main .quietjay .content .skills .container > section .text .examples section .john {
  color: rgba(43, 43, 43, 0.5);
  font-size: 28px;
  line-height: 20px;
  cursor: pointer;
  transition: color 0.15s;
}
main .quietjay .content .skills .container > section .text .examples section .john:hover {
  color: #404040;
  transition: color 0.15s;
}
main .quietjay .content .skills .container > section .text .examples section .john.active {
  color: #404040;
  cursor: default;
}
main .quietjay .content .skills .container > section .text .examples section .jeffrey {
  align-self: center;
  line-height: 20px;
}
main .quietjay .content .skills .container > section .text .separator {
  width: 100%;
  height: 2px;
  background-color: #2b2b2b;
  transform-origin: left;
}
main .quietjay .content .skills .container > section .text p {
  all: unset;
  display: inline;
}
main .quietjay .content .skills .container > section button.next {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100px;
}
main .quietjay .content .skills button.next {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}
main .quietjay .content .works .container {
  display: grid;
  grid-template-columns: 200px auto;
}
main .quietjay .content .works .container .menu section {
  font-size: 28px;
  line-height: 30px;
}
main .quietjay .content .contact .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .quietjay .content .contact .container .heart {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .quietjay .content .contact .container .heart .category {
  font-size: 23px;
  text-align: center;
}
main .quietjay .content .contact .container .heart .link {
  display: grid;
  grid-template-columns: max-content auto max-content;
  gap: 5px;
}
main .quietjay .content .contact .container .heart .link > :first-child {
  font-weight: 500;
}
main .quietjay .content .contact .container .heart .link .line {
  align-self: center;
  width: 100%;
  height: 1px;
  background-color: #2b2b2b;
}
main .quietjay .content .contact .container .heart .love {
  align-self: center;
  width: 16px;
  height: 16px;
}
main .quietjay .content .contact .container .heart .love path {
  fill: #2b2b2b;
}

.menu {
  padding: 6px 20px;
}
.menu .items {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.menu .items section {
  width: 100%;
  font-size: 35px;
  line-height: 40px;
  transition: transform 0.1s;
  cursor: pointer;
  user-select: none;
}
.menu .items section:hover {
  transform: translateX(4px);
  transition: transform 0.1s;
}
.menu .items section.active {
  font-weight: 700;
  cursor: default;
  transform: translateX(14px);
}
.menu .items section .number {
  font-weight: 300;
}

.highlight {
  background-color: rgba(255, 255, 255, 0.2);
}

.separator.from-right {
  transform-origin: right !important;
}

.shy {
  font-style: italic;
  color: rgba(43, 43, 43, 0.5);
}

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