@charset "UTF-8";
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root {
  --color-primary: #ffa700;
  --color-secondary: #386FF6;
  --color-white: #fff;
  --color-white-dark: #EEF0F1;
  --color-black: #222;
  --color-white-semi: #ddd;
  --color-gray: #D2D8DB;
  background-color: var(--color-white);
  color: var(--color-black);
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100vw;
  height: 100vh;
  background: var(--color-white-dark);
  overflow: hidden;
  font-weight: 500;
  letter-spacing: normal;
  font-family: "Nunito Sans", sans-serif;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 31.25%;
  }
}
.graph__container {
  display: inline-block;
  height: 100%;
  padding: 2rem;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.graph__row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.graph__row--reverse {
  flex-direction: row-reverse;
}
.graph__col {
  display: flex;
  flex-direction: row;
  margin: 0 0 0 1rem;
}
.graph__col--reverse {
  flex-direction: row-reverse;
  margin: 0 1rem 0 0;
}
.graph__pathWrapper {
  position: relative;
  overflow: hidden;
}
.graph__pathWrapper--left, .graph__pathWrapper--right {
  width: 12vw;
  height: 1rem;
}
.graph__pathWrapper--top {
  width: 1rem;
  height: 10rem;
}
.graph__nodeWrapper {
  height: 3rem;
  width: 3rem;
  overflow: hidden;
  border-radius: 100%;
  cursor: pointer;
}
.graph__nodeWrapper--active {
  animation: focus 0.5s linear;
}
.graph__nodeWrapper--next {
  border: 2px solid var(--color-secondary);
}
.graph__path {
  background: var(--color-gray);
  transition: all 0.5s linear;
}
.graph__path--left, .graph__path--right {
  height: 1rem;
  width: 12vw;
}
.graph__path--left {
  transform: translate(-12vw, 0);
}
.graph__path--right {
  transform: translate(12vw, 0);
}
.graph__path--top {
  width: 1rem;
  height: 10rem;
  transform: translate(0, -10rem);
}
.graph__path--active {
  transform: translate(0, 0);
}
.graph__node {
  height: 3.5rem;
  width: 3.5rem;
  background: var(--color-secondary);
  transition: all 0.5s linear;
  transform: translate(-3.5rem);
}
.graph__node--right {
  transform: translateX(3.5rem);
}
.graph__node--active {
  transform: translateX(0);
  cursor: pointer;
}

@keyframes focus {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 4rem rgba(17, 140, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  }
}
.buttonNavigate__container {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
}
.buttonNavigate__button {
  height: 5rem;
  width: 5rem;
  display: inline-block;
  cursor: pointer;
  margin: 1rem;
  border-radius: 100%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.3s linear;
  background: var(--color-white-dark);
  display: none;
}
.buttonNavigate__button:hover, .buttonNavigate__button:active {
  transform: translateY(0.5rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}
.buttonNavigate__button--left:before {
  content: "‹";
  display: inline-block;
  position: relative;
  font-size: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
.buttonNavigate__button--right:before {
  content: "›";
  display: inline-block;
  position: relative;
  font-size: 4rem;
  left: 50%;
  transform: translateX(-50%);
}

.card__container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.card__container--active {
  display: block;
}
.card__body {
  width: 30rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -250%);
  background: white;
  border-radius: 1rem;
  opacity: 0;
  transition: all 0.5s linear;
  padding: 2rem;
}
.card__body--active {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.card__question {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card__title {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 900;
}
.card__options {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  color: var(--color-white);
}
.card__answer {
  background: var(--color-secondary);
  cursor: pointer;
  margin: 0.5rem 2px;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: all 0.2s linear;
}
.card__answer:hover {
  transform: translateY(2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

.params__container {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 1rem 0;
}
.params__body {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.params__fill {
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transform: translateY(100%);
  transition: all 0.3s linear;
}
.params__tech {
  -webkit-mask: url(images/73208c2642de40b732b92c3fcf001ba6.svg) no-repeat 50% 50%;
}
.params__time {
  -webkit-mask: url(images/4c43f50468a46b076436d5914095a29d.svg) no-repeat 50% 50%;
}
.params__social {
  -webkit-mask: url(images/22e09537669a5f452810ab08286e50b6.svg) no-repeat 50% 50%;
}
.params__pointer {
  -webkit-mask: url(images/36009aeb37b690de1c50875431aca7b4.svg) no-repeat 50% 50%;
}
.params__item {
  -webkit-mask-size: contain;
  overflow: hidden;
  margin: 0.5rem 2rem;
  height: 5rem;
  width: 7.5rem;
  background: var(--color-gray);
}
.params__item:before {
  content: "●";
  display: block;
}
.params__dot {
  opacity: 0;
  text-align: center;
  font-size: 2rem;
  transition: all 0.3s linear;
}
.params__dot--active {
  color: var(--color-primary);
  opacity: 1;
}

.message__wrapper {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.message__wrapper--active {
  z-index: 999;
}
.message__body {
  position: relative;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  transform: translate(-300%, -50%);
  transition: all 0.5s linear;
  text-align: center;
  width: 70vw;
  color: var(--color-white-semi);
  padding: 3rem 1rem;
  border-radius: 1rem;
}
.message__body--danger {
  background: red;
  transform: translate(-50%, -50%);
}
.message__body--warning {
  background: orange;
  transform: translate(-50%, -50%);
}
.message__body--success {
  background: green;
  transform: translate(-50%, -50%);
}
.message__body--info {
  background: var(--color-secondary);
  transform: translate(-50%, -50%);
}

.graphPage__wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  transition: all 0.2s linear;
}
.graphPage__wrapper--active {
  transform: scale(0.8);
}

.resumePage__wrapper {
  width: 100vw;
  height: 100vh;
  background: var(--color-white-dark);
  position: relative;
}
.resumePage__body {
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  margin: auto;
  padding: 1rem 3rem;
}

.resume__title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 3rem;
  margin: 2rem 0;
  text-decoration: underline;
}
.resume__social {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.resume__data {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}
.resume__left, .resume__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 50rem;
}
.resume__left {
  width: 60%;
}
.resume__right {
  width: 40%;
}
.resume__education, .resume__experience, .resume__projects, .resume__honors, .resume__skills, .resume__hobbies {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.resume__entry {
  display: flex;
  flex-direction: column;
}
.resume__entry--head {
  font-size: 2rem;
}
.resume__entry--details {
  font-size: 1rem;
}
