/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* prettier-ignore */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* prettier-ignore */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

/* prettier-ignore */
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
* border box set
* otherwise CSS sucks 10x more
*/
* {
  box-sizing: border-box;
}

/**
*   INDEX.HTML CSS AREA. 
*/
html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

pre,
code {
  font-family: "Courier New", Courier, monospace;
  white-space: pre-wrap;
}

section > p {
  color: rgb(13, 13, 13);
}

#index {
  background: #fcfcfc;
}
#index .content {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: auto;
}
#index .content .splash {
  display: flex;
  flex-direction: column;
  height: 60vh;
  width: 100vw;
  background-color: #3d007a;
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 0H0v36h36V0zM15.126 2H2v13.126c.367.094.714.24 1.032.428L15.554 3.032c-.188-.318-.334-.665-.428-1.032zM18 4.874V18H4.874c-.094-.367-.24-.714-.428-1.032L16.968 4.446c.318.188.665.334 1.032.428zM22.874 2h11.712L20 16.586V4.874c1.406-.362 2.512-1.468 2.874-2.874zm10.252 18H20v13.126c.367.094.714.24 1.032.428l12.522-12.522c-.188-.318-.334-.665-.428-1.032zM36 22.874V36H22.874c-.094-.367-.24-.714-.428-1.032l12.522-12.522c.318.188.665.334 1.032.428zm0-7.748V3.414L21.414 18h11.712c.362-1.406 1.468-2.512 2.874-2.874zm-18 18V21.414L3.414 36h11.712c.362-1.406 1.468-2.512 2.874-2.874zM4.874 20h11.712L2 34.586V22.874c1.406-.362 2.512-1.468 2.874-2.874z' fill='%23665690' fill-opacity='0.17' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-attachment: fixed;
  color: rgb(249, 249, 249);
  padding: 5vw;
  justify-content: center;
}
@media (min-width: 900px) {
  #index .content .splash {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
#index .content .splash .splashInner {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  overflow: hidden;
  word-break: break-all;
  font-size: 2.5rem;
  text-overflow: clip;
}
#index .content .splash .splashInner p {
  color: rgb(249, 249, 249);
}
#index .content .splash .splashInner h2 {
  margin: 20px 0px 30px 0px;
  font-size: 3.5rem;
  letter-spacing: 10px;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
}
#index .content .about {
  display: flex;
  flex-direction: row;
  box-shadow: 0px 0px 11px 3px rgba(0, 0, 0, 0.4509803922) inset;
  padding: 35px 20px;
  background: rgb(238, 238, 238);
  color: rgb(13, 13, 13);
}
@media (max-width: 700px) {
  #index .content .about {
    flex-direction: column;
  }
}
@media (min-width: 900px) {
  #index .content .about {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
#index .content .about .about-content {
  padding-right: 5vw;
  margin-bottom: 15px;
  max-width: 100vw;
  overflow: hidden;
}
#index .content .about .about-content > h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 25px;
}
#index .content .about .about-content p {
  font-size: 1.5rem;
}
#index .content .about .about-pic {
  display: flex;
  flex-direction: column;
}
#index .content .about .about-pic > img {
  align-self: center;
  height: 40vh;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.46);
  border-radius: 15px;
}
#index .content .about .about-pic > figcaption {
  text-align: center;
  margin-top: 5px;
}
#index .content .bingusZone {
  display: flex;
  padding: 30px;
  height: 100%;
  background: rgba(0, 33, 76, 0.71);
}
@media (min-width: 900px) {
  #index .content .bingusZone {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
#index .content .bingusZone .header {
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-shadow: 4px 3px 3px #000;
}
#index .content .bingusZone .bingusInfo {
  flex-grow: 1;
}
#index .content .bingusZone * p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2rem;
  font-weight: 400;
}
#index .content .bingusZone .bingusContainment {
  width: 50%;
  height: 30vh;
}
#index .content .bingusZone .bingusContainment .bingusCube {
  width: 0px;
  height: 0px;
  position: relative;
  top: 50%;
  left: 50%;
  backface-visibility: visible;
  transform-style: preserve-3d;
  animation: cube-spin 3s infinite linear;
}
@keyframes cube-spin {
  0% {
    transform: rotate3d(1, 1, 1, 0deg);
  }
  100% {
    transform: rotate3d(-0.4, -0.5, -0.6, 2turn);
  }
}
#index .content .bingusZone .bingusContainment .bingusCube .face {
  display: block;
  position: absolute;
  background-image: url("https://64.media.tumblr.com/c2a9c4bae201fdcf05794871b589a662/91c05b7f00395290-f5/s1280x1920/99fc9b12c060f402bcb482107eb300846b461091.jpg") !important;
  background-size: contain;
  background-position: 50% 50%;
  height: 100px;
  width: 100px;
}
#index .content .bingusZone .bingusContainment .bingusCube .face.f {
  transform: translateZ(-50px);
}
#index .content .bingusZone .bingusContainment .bingusCube .face.b {
  transform: rotateX(180deg) translateZ(-50px);
}
#index .content .bingusZone .bingusContainment .bingusCube .face.r {
  transform: rotateY(90deg);
  margin-left: 50px;
}
#index .content .bingusZone .bingusContainment .bingusCube .face.l {
  transform: rotateY(-90deg);
  margin-left: -50px;
}
#index .content .bingusZone .bingusContainment .bingusCube .face.t {
  transform: rotateX(90deg);
  margin-top: -50px;
}
#index .content .bingusZone .bingusContainment .bingusCube .face.m {
  transform: rotateX(-90deg);
  margin-top: 50px;
}

/** common elements **/
#footer {
  display: flex;
  flex-direction: row;
  padding: 20px 5vw;
  background: rgb(24, 4, 47);
  color: rgba(252, 252, 252, 0.8901960784);
}
@media (min-width: 900px) {
  #footer {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
#footer .footer-left {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#footer .footer-left > p:first-child {
  flex-grow: 1;
}
#footer .footer-left > p:last-child {
  font-style: italic;
  font-weight: 200;
}
#footer .footer-right {
  display: flex;
  flex-direction: column;
}
#footer .footer-right a {
  text-align: right;
  font-size: 1.3rem;
  color: rgba(252, 252, 252, 0.8901960784);
}
#footer .footer-right > a:not(:first-child) {
  margin-top: 10px;
}

#navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100vw;
  height: 50px;
  position: fixed;
  background: #130047;
  padding: 15px 20px;
  color: rgb(249, 249, 249);
  font-weight: 500;
  box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.3294117647);
}
#navbar .navbar-left {
  flex-grow: 1;
}
#navbar .navbar-right {
  display: flex;
  flex-direction: row;
}
#navbar .navbar-right > a {
  margin: 0px 5px;
  text-decoration: none;
  color: rgb(249, 249, 249);
  transition: color ease-in-out 0.5s, text-decoration ease-in-out 0.5s;
}
#navbar .navbar-right > a:hover {
  color: rgb(177, 160, 255);
  text-decoration: underline;
}

.heading.medium {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.heading.small {
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 10px;
}

#past {
  display: flex;
  background: rgb(250, 250, 250);
  flex-direction: column;
  padding: 5vw;
  padding-top: 50px;
}
#past .subheading.medium {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 5px;
  padding: 10px 0px;
}
@media (min-width: 900px) {
  #past {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
#past .about {
  height: fit-content;
  padding: 5vh 0px;
}
#past .experience {
  padding: 1vh 0px;
}
#past p {
  font-size: 1.3rem;
}
#past i {
  font-style: italic;
}
#past .reference {
  text-decoration: underline;
  color: rgb(99, 64, 255);
}
#past ol {
  margin: 10px 0px;
  list-style: bullet;
}

#future-body,
#comments-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#future {
  display: flex;
  background: rgb(250, 250, 250);
  flex-direction: column;
  flex-grow: 1;
  padding: 5vh;
  padding-top: 50px;
}
#future p {
  font-size: 1.3rem;
}
@media (min-width: 900px) {
  #future {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
#future > section {
  padding-top: 5vh;
}

#comments {
  display: flex;
  flex-direction: column;
  background: rgb(250, 250, 250);
  flex-grow: 1;
  padding: 5vw;
  padding-top: 50px;
}
#comments p {
  font-size: 1.3rem;
}
@media (min-width: 900px) {
  #comments {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
#comments .design {
  height: fit-content;
  padding: 5vh 0px;
}
#comments .design .mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 6fr 20px;
  gap: 0px 15px;
  grid-template-areas: ". ." ". .";
  margin: 20px 0px;
}
#comments .design .mockups > img {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  justify-self: center;
}
#comments .design .mockups figcaption {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
  grid-column: span 2;
  margin-top: 10px;
}
#comments .aesthetics {
  height: fit-content;
  padding: 5vh 0px;
}
#comments .accessibility {
  height: fit-content;
}
#comments .attributions {
  padding: 5vh 0px;
}
#comments .attributions table {
  word-break: break-all;
  border: 0.5px solid rgba(0, 0, 0, 0.8);
}
#comments .attributions table td,
#comments .attributions table th {
  border: 0.5px solid rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 1.1rem;
}
#comments .attributions table th {
  font-weight: 600;
  font-size: 1.3rem;
}

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