body {
  background-color: black;
  overflow-x: hidden;
  width: 100vw;
  margin: 0;
}
body #header {
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 6vh;
  background-color: black;
  margin: 0;
  position: fixed;
  z-index: 1;
  display: flex;
  align-items: center;
  border-bottom: 2px dashed white;
  top: 0;
  padding: 0;
  top: 0;
  left: 0;
  text-align: center;
  text-align: center;
}
body #header a {
  text-decoration: none;
}
body #header a h1 {
  width: -moz-fit-content;
  width: fit-content;
}
body #header h1 {
  color: white;
  line-height: 100%;
  display: inline;
  width: 80vw;
}
body #main {
  position: relative;
  top: 20vh;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  margin: 0;
  position: relative;
}
body #main #intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 99vw;
  height: 30vh;
}
body #main #intro #info {
  width: 40vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 2px solid white;
  position: relative;
  left: -1vw;
  border-radius: 5px;
}
body #main #intro #info img {
  width: auto;
  height: 100%;
}
body #main #intro #info #text_box {
  position: relative;
  top: 0;
  color: white;
  display: inline-block;
  height: 100%;
}
body #main #intro #info #text_box p {
  font-size: 1.2em;
  margin-right: 5px;
}
body #main #intro #left {
  height: -moz-fit-content;
  height: fit-content;
  width: 35vw;
  border: 2px solid white;
  position: relative;
  padding: 0 5px 0 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
body #main #intro #left #section {
  color: white;
  width: 100%;
  border-radius: 4px;
  padding: 1px;
}
body #main #intro #left #section a {
  color: white;
  text-decoration: none;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  align-items: center;
  justify-content: space-between;
}
body #main #intro #left #section h2 {
  display: inline;
  font-size: 2em;
}
body #main #intro #left #section img {
  width: 100px;
  height: auto;
}
body #main #intro #left #section:hover {
  background-color: rgba(128, 128, 128, 0.5);
}
body #main #grid_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 99vw;
  height: -moz-fit-content;
  height: fit-content;
}
body #main #grid_container h2 {
  color: white;
}
body #main #grid_container #skill_grid {
  border: 2px solid white;
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-rows: repeat(10, 50px);
  grid-template-columns: repeat(10, 50px);
  gap: 10px;
  align-items: center;
}
body #main #grid_container #skill_grid .skill {
  position: relative;
  border: 2px solid white;
  border-radius: 10px;
}
body #main #grid_container #skill_grid .skill p {
  color: white;
  text-align: center;
}
body #main #grid_container #skill_grid .skill .info {
  border: 2px solid white;
  border-radius: 10px;
  position: absolute;
  left: 100%;
  top: 100%;
  width: 200px;
  background-color: black;
  z-index: 1;
  display: none;
  font-size: 1.1em;
}
body #main #grid_container #skill_grid .skill .visible {
  display: block;
}
body #main #grid_container #skill_grid .skill:hover {
  cursor: pointer;
}
body #main #grid_container #skill_grid .skill:nth-of-type(1) {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
}
body #main #grid_container #skill_grid .skill:nth-of-type(2) {
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 2;
  grid-column-end: 6;
}
body #main #grid_container #skill_grid .skill:nth-of-type(3) {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 9;
  grid-column-end: 11;
}
body #main #grid_container #skill_grid .skill:nth-of-type(4) {
  grid-row-start: 7;
  grid-row-end: 8;
  grid-column-start: 5;
  grid-column-end: 6;
}
body #main #grid_container #skill_grid .skill:nth-of-type(5) {
  grid-row-start: 5;
  grid-row-end: 6;
  grid-column-start: 3;
  grid-column-end: 5;
}
body #main #grid_container #skill_grid .skill:nth-of-type(6) {
  grid-row-start: 10;
  grid-row-end: 11;
  grid-column-start: 1;
  grid-column-end: 2;
}
body #main #grid_container #skill_grid .skill:nth-of-type(7) {
  grid-row-start: 8;
  grid-row-end: 9;
  grid-column-start: 6;
  grid-column-end: 9;
}
body #main #grid_container #skill_grid .skill:nth-of-type(8) {
  grid-row-start: 4;
  grid-row-end: 5;
  grid-column-start: 7;
  grid-column-end: 9;
}
body #main #grid_container #skill_grid .skill:nth-of-type(9) {
  grid-row-start: 6;
  grid-row-end: 7;
  grid-column-start: 1;
  grid-column-end: 3;
}
body #main #grid_container #skill_grid .skill:nth-of-type(10) {
  grid-row-start: 9;
  grid-row-end: 10;
  grid-column-start: 2;
  grid-column-end: 5;
}
body #main #grid_container #skill_grid .skill:nth-of-type(11) {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 7;
  grid-column-end: 9;
}
body #main #grid_container #skill_grid .skill:nth-of-type(12) {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 5;
}
body #main #grid_container #skill_grid .skill:nth-of-type(13) {
  grid-row-start: 10;
  grid-row-end: 11;
  grid-column-start: 8;
  grid-column-end: 10;
}
body #main #grid_container #skill_grid .skill:nth-of-type(14) {
  grid-row-start: 7;
  grid-row-end: 8;
  grid-column-start: 8;
  grid-column-end: 10;
}
body #main #grid_container #skill_grid .skill:nth-of-type(15) {
  grid-row-start: 4;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 4;
}
body #main #work_history {
  display: grid;
  grid-template-rows: 30vw;
  grid-template-columns: 50vh 50vh 50vh;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 5vh;
}
body #main #work_history .job {
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: white;
}
body #main #work_history .job h2 {
  width: 100%;
  text-align: center;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
}
body #main #work_history .job div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10px 0 10px;
  height: 10%;
}
body #main #work_history .job div h3 {
  border-right: 2px dashed rgba(255, 255, 255, 0.5);
  width: 50%;
  margin: 0;
}
body #main #work_history .job div p {
  font-size: 1.1em;
  margin: 0;
}
body #main #work_history .job div:last-of-type {
  border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
}
body #main #work_history .job h3 {
  margin: 20px 10px 0 10px;
}
body #main #work_history .job p {
  margin: 20px 10px 0 10px;
  font-size: 1.2em;
}
body #footer {
  width: 100vw;
  height: 10vh;
  max-height: 60px;
  position: relative;
  bottom: -10vh;
  margin-top: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px dashed white;
}
body #footer a {
  text-decoration: none;
  color: white;
  outline: white solid 2px;
  text-align: center;
  line-height: 1em;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 1% 5% 1% 5%;
}
body #footer a:hover {
  background-color: rgba(65, 65, 65, 0.5);
}

@media screen and (max-width: 500px) {
  body #header {
    width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 6vh;
    background-color: black;
    margin: 0;
    position: fixed;
    z-index: 1;
    display: flex;
    align-items: center;
    border-bottom: 2px dashed white;
    top: 0;
    margin-bottom: 10px;
    width: 100vw;
    height: fit-content;
    min-height: 6vh;
    background-color: black;
    margin: 0;
    position: fixed;
    z-index: 1;
    display: flex;
    align-items: center;
    border-bottom: 2px dashed white;
    top: 0;
    padding: 0;
    top: 0;
    left: 0;
    text-align: center;
  }
  body #header a {
    text-decoration: none;
  }
  body #header a h1 {
    width: -moz-fit-content;
    width: fit-content;
  }
  body #header h1 {
    color: white;
    line-height: 100%;
    display: inline;
    width: 80vw;
  }
  body #header a {
    width: -moz-fit-content;
    width: fit-content;
  }
  body #header a h1 {
    font-size: 1.2em;
  }
  body #header h1 {
    width: 65vw;
    font-size: 1.5em;
  }
  body #main #intro {
    display: block;
    width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
  }
  body #main #intro #info {
    width: 99vw;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
  }
  body #main #intro #info img {
    display: none;
  }
  body #main #intro #info #text_box h2 {
    margin-left: 5px;
  }
  body #main #intro #info #text_box p {
    font-size: 1.1em;
    margin: 5px;
  }
  body #main #intro #left {
    width: 99vw;
    padding: 0;
    margin-top: 1vh;
  }
  body #main #intro #left #section {
    width: 100%;
  }
  body #main #intro #left #section a {
    justify-content: space-between;
    margin: 0 5px 0 5px;
  }
  body #main #intro #left #section h2 {
    display: inline;
    font-size: 1.5em;
  }
  body #main #intro #left #section:last-of-type {
    margin-top: 4%;
  }
  body #main #grid_container {
    flex-direction: column;
    width: 100vw;
    margin-top: 10vh;
  }
  body #main #grid_container #skill_grid {
    padding: 5px;
    grid-template-rows: repeat(1, 50px);
    grid-template-columns: repeat(1, 90vw);
  }
  body #main #grid_container #skill_grid .skill .info {
    left: 0;
    width: 100%;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(1) {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(2) {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(3) {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(4) {
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(5) {
    grid-row-start: 5;
    grid-row-end: 6;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(6) {
    grid-row-start: 6;
    grid-row-end: 7;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(7) {
    grid-row-start: 7;
    grid-row-end: 8;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(8) {
    grid-row-start: 8;
    grid-row-end: 9;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(9) {
    grid-row-start: 9;
    grid-row-end: 10;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(10) {
    grid-row-start: 10;
    grid-row-end: 11;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(11) {
    grid-row-start: 11;
    grid-row-end: 12;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(12) {
    grid-row-start: 12;
    grid-row-end: 13;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(13) {
    grid-row-start: 13;
    grid-row-end: 14;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(14) {
    grid-row-start: 14;
    grid-row-end: 15;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(15) {
    grid-row-start: 15;
    grid-row-end: 16;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(16) {
    grid-row-start: 16;
    grid-row-end: 17;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(17) {
    grid-row-start: 17;
    grid-row-end: 18;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #work_history {
    display: flex;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    width: 100vw;
    justify-content: center;
    margin-top: 10vh;
  }
  body #main #work_history .job {
    width: 90vw;
    height: -moz-fit-content;
    height: fit-content;
  }
  body #main #work_history .job div p {
    text-align: end;
  }
  body #footer {
    width: 100vw;
    height: 10vh;
    max-height: 60px;
    position: relative;
    bottom: -10vh;
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px dashed white;
  }
  body #footer a {
    text-decoration: none;
    color: white;
    outline: white solid 2px;
    text-align: center;
    line-height: 1em;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 1% 5% 1% 5%;
  }
  body #footer a:hover {
    background-color: rgba(65, 65, 65, 0.5);
  }
  body #footer {
    height: 10vh;
    margin-top: 10vh;
    justify-content: space-evenly;
  }
  body #footer a {
    width: 20vw;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1em;
    font-size: 0.7em;
    padding: 2%;
  }
}
@media screen and (min-width: 500px) and (max-width: 1030px) {
  body #header {
    width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 6vh;
    background-color: black;
    margin: 0;
    position: fixed;
    z-index: 1;
    display: flex;
    align-items: center;
    border-bottom: 2px dashed white;
    top: 0;
    margin-bottom: 10px;
    width: 100vw;
    height: fit-content;
    min-height: 6vh;
    background-color: black;
    margin: 0;
    position: fixed;
    z-index: 1;
    display: flex;
    align-items: center;
    border-bottom: 2px dashed white;
    top: 0;
    padding: 0;
    top: 0;
    left: 0;
    text-align: center;
  }
  body #header a {
    text-decoration: none;
  }
  body #header a h1 {
    width: -moz-fit-content;
    width: fit-content;
  }
  body #header h1 {
    color: white;
    line-height: 100%;
    display: inline;
    width: 80vw;
  }
  body #header a {
    width: -moz-fit-content;
    width: fit-content;
  }
  body #header a h1 {
    font-size: 1.2em;
  }
  body #header h1 {
    width: 65vw;
    font-size: 1.5em;
  }
  body #main #intro {
    display: block;
    width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
  }
  body #main #intro #info {
    width: 99vw;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
  }
  body #main #intro #info img {
    display: none;
  }
  body #main #intro #info #text_box h2 {
    margin-left: 5px;
  }
  body #main #intro #info #text_box p {
    font-size: 1.1em;
    margin: 5px;
  }
  body #main #intro #left {
    width: 99vw;
    padding: 0;
    margin-top: 1vh;
  }
  body #main #intro #left #section {
    width: 100%;
  }
  body #main #intro #left #section a {
    justify-content: space-between;
    margin: 0 5px 0 5px;
  }
  body #main #intro #left #section h2 {
    display: inline;
    font-size: 1.5em;
  }
  body #main #intro #left #section:last-of-type {
    margin-top: 4%;
  }
  body #main #grid_container {
    flex-direction: column;
    width: 100vw;
    margin-top: 10vh;
  }
  body #main #grid_container #skill_grid {
    padding: 5px;
    grid-template-rows: repeat(1, 50px);
    grid-template-columns: repeat(1, 90vw);
  }
  body #main #grid_container #skill_grid .skill .info {
    left: 0;
    width: 100%;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(1) {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(2) {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(3) {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(4) {
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(5) {
    grid-row-start: 5;
    grid-row-end: 6;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(6) {
    grid-row-start: 6;
    grid-row-end: 7;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(7) {
    grid-row-start: 7;
    grid-row-end: 8;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(8) {
    grid-row-start: 8;
    grid-row-end: 9;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(9) {
    grid-row-start: 9;
    grid-row-end: 10;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(10) {
    grid-row-start: 10;
    grid-row-end: 11;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(11) {
    grid-row-start: 11;
    grid-row-end: 12;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(12) {
    grid-row-start: 12;
    grid-row-end: 13;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(13) {
    grid-row-start: 13;
    grid-row-end: 14;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(14) {
    grid-row-start: 14;
    grid-row-end: 15;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(15) {
    grid-row-start: 15;
    grid-row-end: 16;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(16) {
    grid-row-start: 16;
    grid-row-end: 17;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #grid_container #skill_grid .skill:nth-of-type(17) {
    grid-row-start: 17;
    grid-row-end: 18;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  body #main #work_history {
    display: flex;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    width: 100vw;
    justify-content: center;
    margin-top: 10vh;
  }
  body #main #work_history .job {
    width: 90vw;
    height: -moz-fit-content;
    height: fit-content;
  }
  body #main #work_history .job div p {
    text-align: end;
  }
  body #footer {
    width: 100vw;
    height: 10vh;
    max-height: 60px;
    position: relative;
    bottom: -10vh;
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px dashed white;
  }
  body #footer a {
    text-decoration: none;
    color: white;
    outline: white solid 2px;
    text-align: center;
    line-height: 1em;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 1% 5% 1% 5%;
  }
  body #footer a:hover {
    background-color: rgba(65, 65, 65, 0.5);
  }
  body #footer {
    height: 10vh;
    margin-top: 10vh;
    justify-content: space-evenly;
  }
  body #footer a {
    width: 20vw;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1em;
    font-size: 0.7em;
    padding: 2%;
  }
  body #header {
    height: 11vh;
    max-height: 50px;
  }
  body #main #intro {
    height: -moz-fit-content;
    height: fit-content;
  }
  body #main #intro #left #section:last-of-type {
    margin-top: 1%;
  }
  body #main #grid_container {
    top: 100px;
  }
  body #main #work_history {
    grid-template-columns: 90vw;
    grid-template-rows: repeat(3, 70vh);
  }
  body #footer {
    margin-top: 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
  body #footer a {
    margin-top: 5px;
    line-height: 1em;
  }
}/*# sourceMappingURL=index.css.map */