* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline; }

img {
  max-width: 100%;
  width: 100%;
  display: flex;
  object-fit: cover;
  object-position: center center; }

a {
  display: flex;
  text-decoration: none;
  color: inherit;
  font-size: inherit; }

video {
  max-width: 100%;
  width: 100%;
  display: flex;
  object-fit: cover;
  object-position: center center; }

p a {
  display: inline; }

li {
  list-style-type: none; }

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  scroll-behavior: smooth; }

h1,
h2,
h3,
h4,
h5,
h6 {
  hyphens: auto;
  font-weight: inherit;
  font-size: inherit; }

form, input, .contactSection .formContainer .row .column .inputBox.textArea textarea, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  hyphens: auto;
  background-color: transparent;
  display: block;
  color: inherit;
  box-shadow: none;
  border: none;
  outline: none; }

.header {
  width: 100%;
  background-color: transparent;
  padding: 1em 3em;
  display: flex;
  flex: row nowrap;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  position: absolute;
  top: 0; }
  @media screen and (max-width: 1200px) {
    .header {
      display: flex;
      flex: row nowrap;
      justify-content: space-evenly;
      align-items: center;
      padding: 0;
      margin: 0;
      position: relative; } }
  .header .header__h1 img {
    transform: scale(0.5); }
  .header .header__menuIcon {
    display: none; }
    @media screen and (max-width: 1200px) {
      .header .header__menuIcon {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 50px;
        cursor: pointer; } }
    .header .header__menuIcon .bars {
      background: #ee9d53;
      border-radius: 10px;
      height: 6px;
      margin: 5px 0;
      transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6); }
      .header .header__menuIcon .bars:nth-child(1) {
        width: calc(25% + 1 * 25%); }
      .header .header__menuIcon .bars:nth-child(2) {
        width: calc(25% + 2 * 25%); }
      .header .header__menuIcon .bars:nth-child(3) {
        width: calc(25% + 3 * 25%); }
  .header #hamburger.active span:nth-child(1) {
    width: 50%;
    background: #ac3b69;
    transform: translate(0, 21px) rotate(90deg); }
  .header #hamburger.active span:nth-child(2) {
    width: 50%;
    transform: translate(15px, -5px) rotate(90deg); }
  .header #hamburger.active span:nth-child(3) {
    width: 50%;
    transform: translate(30px, -10px) rotate(90deg);
    background: #ac3b69; }
  .header .header__nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 2em; }
    @media screen and (max-width: 1200px) {
      .header .header__nav {
        display: none;
        opacity: 0; } }
  @media screen and (max-width: 1200px) {
    .header .header__nav.ver {
      display: flex;
      opacity: 1;
      width: 80%;
      height: 80vh;
      position: absolute;
      top: 80%; } }
  .header .header__ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 1200px) {
      .header .header__ul {
        flex-direction: column;
        background-color: #2A1626;
        width: 100%;
        height: 100%; } }
  .header .header__li {
    margin: 0 1em;
    font-weight: 600;
    color: #ee9d53;
    text-transform: capitalize;
    letter-spacing: 0;
    padding: 1em 0;
    font-size: 1.2em;
    transition: 0.5s; }
    .header .header__li a {
      position: relative;
      display: block;
      text-transform: uppercase; }
      .header .header__li a::after {
        position: absolute;
        content: "";
        top: 100%;
        left: 0;
        width: 100%;
        height: 3px;
        background: #ee9d53;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s; }
      .header .header__li a:hover {
        color: #ac3b69; }
      .header .header__li a:hover::after {
        transform: scaleX(1);
        transform-origin: left; }
    @media screen and (max-width: 1200px) {
      .header .header__li {
        margin: 1em 0; } }

.container {
  width: 90%;
  display: flex;
  flex: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 1em; }
  @media screen and (max-width: 650px) {
    .container {
      flex-direction: column;
      width: 60%;
      margin: auto; } }
  .container .card {
    position: relative;
    cursor: pointer;
    border: none;
    border-radius: 5px; }
    @media screen and (max-width: 1200px) {
      .container .card:active .face.face1 {
        background: #572B4B;
        transform: translateY(0px); }
      .container .card:active .face.face1 .content {
        opacity: 1; }
      .container .card:active .face.face2 {
        transform: translateY(0); } }
    .container .card:hover .face.face1 {
      background: #572B4B;
      transform: translateY(0px); }
    .container .card:hover .face.face1 .content {
      opacity: 1; }
    .container .card:hover .face.face2 {
      transform: translateY(0); }
  .container .card .face {
    width: 400px;
    height: 200px;
    transition: 0.5s;
    border: none;
    border-radius: 5px; }
    @media screen and (max-width: 650px) {
      .container .card .face {
        width: 300px; } }
  .container .card .face.face1 {
    position: relative;
    background: #572B4B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
    border: none;
    border-radius: 5px; }
  .container .card .face.face1 .content {
    opacity: 0.7;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .container .card .face.face1 .content h3 {
      font-family: "Montserrat";
      color: #ffffff;
      text-align: center;
      font-size: 1.5em;
      padding: 0;
      margin: 1em; }
      @media screen and (max-width: 650px) {
        .container .card .face.face1 .content h3 {
          font-size: 1.2em; } }
  .container .card .face.face2 {
    position: relative;
    background: #ac3b69;
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 1em;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-100px); }
    @media screen and (max-width: 650px) {
      .container .card .face.face2 {
        padding: 0.5em; } }
  .container .card .face.face2 .content p {
    padding: 1em;
    text-align: center;
    color: #ffffff;
    font-family: "Raleway"; }
    @media screen and (max-width: 650px) {
      .container .card .face.face2 .content p {
        padding: 0.6em; } }
  .container .card .face.face2 .content .content__techIcons {
    color: #ee9d53;
    padding: 1em;
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 650px) {
      .container .card .face.face2 .content .content__techIcons {
        padding: 0.5em; } }
    .container .card .face.face2 .content .content__techIcons .techIcon {
      font-size: 1.8em;
      padding: 0.4em; }
      .container .card .face.face2 .content .content__techIcons .techIcon:hover {
        color: #ffffff; }
      .container .card .face.face2 .content .content__techIcons .techIcon img {
        width: 45px;
        height: 40px; }

section {
  padding: 10vh 5vw; }

.home {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; }
  .home .centeredSection {
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    background: transparent;
    top: 35%;
    left: 5%;
    width: 90%;
    margin: auto; }
    @media screen and (max-width: 1200px) {
      .home .centeredSection {
        flex-direction: column; } }
    .home .centeredSection .textDiv {
      flex: 0.7;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center; }
      @media screen and (max-width: 1200px) {
        .home .centeredSection .textDiv {
          flex: 1;
          align-items: center;
          text-align: center; } }
      @media screen and (max-width: 650px) {
        .home .centeredSection .textDiv {
          padding: 3em 0 0 0; } }
      .home .centeredSection .textDiv h2 {
        font-family: "Raleway";
        font-weight: 900;
        font-size: 6em;
        color: #ffffff;
        margin: 0.2em 0;
        text-transform: uppercase;
        letter-spacing: 3px; }
        @media screen and (max-width: 650px) {
          .home .centeredSection .textDiv h2 {
            font-size: 3em; } }
      .home .centeredSection .textDiv h3 {
        font-family: "Raleway";
        font-weight: 600;
        font-size: 2.5em;
        color: #ee9d53;
        letter-spacing: 1px;
        line-height: 1.5em; }
        @media screen and (max-width: 650px) {
          .home .centeredSection .textDiv h3 {
            font-size: 2em; } }
      .home .centeredSection .textDiv .line {
        background: #ac3b69;
        border-radius: 2px;
        height: 6px;
        margin: 1.5em 0;
        width: 30%; }
    .home .centeredSection .imgDiv svg {
      height: 170%;
      width: 170%;
      animation: orb-mover 8s linear infinite; }
      @media screen and (max-width: 1200px) {
        .home .centeredSection .imgDiv svg {
          padding: 1em 0 0 0;
          flex: 1;
          transform: scale(0.8);
          animation: none; } }

.projects {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .projects h3 {
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 600;
    font-family: "Montserrat";
    text-align: center;
    letter-spacing: 1px; }
    @media screen and (max-width: 650px) {
      .projects h3 {
        font-size: 1.5em; } }
  .projects .projectTitle {
    position: relative;
    background: none;
    text-transform: uppercase;
    text-decoration: none;
    border: 0.2em solid #ee9d53;
    border-radius: 5px;
    background-color: #ac3b69;
    padding: 0.5em 1em;
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center; }
    .projects .projectTitle::before {
      content: "";
      display: block;
      position: absolute;
      width: 10%;
      background: #ffffff;
      height: 0.3em;
      right: 20%;
      top: -0.21em;
      transform: skewX(-45deg);
      -webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
      transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1); }
    .projects .projectTitle::after {
      content: "";
      display: block;
      position: absolute;
      width: 10%;
      background: #ffffff;
      height: 0.3em;
      left: 20%;
      bottom: -0.25em;
      transform: skewX(45deg);
      -webkit-transition: all 0.45 cubic-bezier(0.86, 0, 0.07, 1);
      transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1); }
    .projects .projectTitle:hover::before {
      right: 80%; }
    .projects .projectTitle:hover::after {
      left: 80%; }
  .projects .webProjects, .projects .gameProjects {
    width: 90%;
    padding: 2em;
    margin: 2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }
    .projects .webProjects h4, .projects .gameProjects h4 {
      color: #ee9d53;
      font-size: 1.6em;
      font-weight: 600;
      font-family: "Montserrat";
      text-align: center;
      letter-spacing: 1px;
      padding: 0.5em;
      border-radius: 5px;
      background-color: #572B4B;
      border: 2px solid #ee9d53; }
      @media screen and (max-width: 650px) {
        .projects .webProjects h4, .projects .gameProjects h4 {
          font-size: 1.3em; } }
    .projects .webProjects .Wprojects, .projects .gameProjects .Wprojects {
      width: 100%;
      display: flex;
      flex: row nowrap;
      justify-content: center;
      align-items: center; }
      @media screen and (max-width: 1200px) {
        .projects .webProjects .Wprojects, .projects .gameProjects .Wprojects {
          flex-direction: column; } }
      .projects .webProjects .Wprojects .btn, .projects .gameProjects .Wprojects .btn {
        border: none;
        border-radius: 2px;
        outline: none;
        font-family: "Raleway";
        font-size: 1.5em;
        font-weight: 600;
        letter-spacing: 1px;
        margin: 0  0.5em;
        padding: 0.4em .8em;
        cursor: pointer;
        background-color: #ffffff;
        color: #572B4B;
        transition: all 0.5s ease; }
        .projects .webProjects .Wprojects .btn:hover, .projects .gameProjects .Wprojects .btn:hover {
          background-color: #ac3b69;
          color: #ffffff; }
  .projects .gameProjects .Gprojects {
    width: 100%;
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 1200px) {
      .projects .gameProjects .Gprojects {
        flex-direction: column; } }
    .projects .gameProjects .Gprojects .face.face2 .content .content_img {
      display: flex;
      align-items: center;
      justify-content: center; }
      .projects .gameProjects .Gprojects .face.face2 .content .content_img img {
        max-height: 100px;
        width: auto; }

.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2em;
  margin-bottom: 4em; }
  .about h3 {
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 600;
    font-family: "Montserrat";
    text-align: center;
    letter-spacing: 1px; }
    @media screen and (max-width: 650px) {
      .about h3 {
        font-size: 1.5em; } }
  .about .aboutTittle {
    position: relative;
    background: none;
    color: #ee9d53;
    text-transform: uppercase;
    text-decoration: none;
    border: 0.2em solid #ee9d53;
    border-radius: 5px;
    background-color: #ac3b69;
    padding: 0.5em 1em;
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center; }
    .about .aboutTittle::before {
      content: "";
      display: block;
      position: absolute;
      width: 10%;
      background: #ffffff;
      height: 0.3em;
      right: 20%;
      top: -0.21em;
      transform: skewX(-45deg);
      -webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
      transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1); }
    .about .aboutTittle::after {
      content: "";
      display: block;
      position: absolute;
      width: 10%;
      background: #ffffff;
      height: 0.3em;
      left: 20%;
      bottom: -0.25em;
      transform: skewX(45deg);
      -webkit-transition: all 0.45 cubic-bezier(0.86, 0, 0.07, 1);
      transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1); }
    .about .aboutTittle:hover::before {
      right: 80%; }
    .about .aboutTittle:hover::after {
      left: 80%; }
  .about .text {
    padding: 2em;
    text-align: center;
    font-family: "Raleway";
    color: #ee9d53;
    font-size: 1.2em;
    width: 80%;
    margin: auto;
    line-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 650px) {
      .about .text {
        font-size: 1em;
        line-height: 25px;
        width: 100%; } }
    .about .text .pIntro {
      color: #ffffff;
      font-size: 1.5em;
      padding: 1em; }
      @media screen and (max-width: 650px) {
        .about .text .pIntro {
          font-size: 1.5em;
          line-height: 25px; } }
  .about .about_skills {
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 1200px) {
      .about .about_skills {
        flex-direction: column; } }
  .about #csp img {
    width: auto;
    height: 60px; }
  .about #cpp img {
    width: auto;
    height: 60px; }
  .about #matlab img {
    width: auto;
    height: 50px; }
  .about #blender img {
    width: auto;
    height: 50px; }
  .about #godot img {
    width: auto;
    height: 60px; }
  .about #html img {
    width: auto;
    height: 50px; }
  .about #css img {
    width: auto;
    height: 45px; }
  .about #js img {
    width: auto;
    height: 45px; }
  .about #gulp img {
    width: auto;
    height: 50px; }
  .about #sass img {
    width: 55px;
    height: auto; }

#particles-js {
  position: absolute;
  top: 0;
  width: 90%;
  height: 100%;
  background-color: #2a1626; }

@keyframes orb-mover {
  0% {
    transform: translateY(-100px);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  1% {
    transform: translateY(-100px);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  49% {
    transform: translateY(0px);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  51% {
    transform: translateY(0px);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  99% {
    transform: translateY(-100px);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  100% {
    transform: translateY(-100px);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); } }

.contactSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2em; }
  @media screen and (max-width: 650px) {
    .contactSection {
      padding: 1em; } }
  .contactSection .formContainer {
    width: 80%;
    padding: 20px; }
    .contactSection .formContainer h3 {
      color: #ffffff;
      font-size: 2.5em;
      font-weight: 600;
      font-family: "Montserrat";
      text-align: center;
      letter-spacing: 1px; }
      @media screen and (max-width: 650px) {
        .contactSection .formContainer h3 {
          font-size: 1.5em; } }
    @media screen and (max-width: 650px) {
      .contactSection .formContainer {
        width: 100%;
        padding: 1em; } }
    .contactSection .formContainer .row {
      position: relative;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .contactSection .formContainer .row .column {
      position: relative;
      width: 100%;
      padding: 0 0.6em;
      margin: 2em 0 0.7em;
      transition: 0.5s; }
    .contactSection .formContainer .row .column .inputBox {
      position: relative;
      width: 100%;
      height: 40px;
      color: #ac3b69; }
    .contactSection .formContainer .row .column .inputBox input, .contactSection .formContainer .row .column .inputBox.textArea textarea {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: transparent;
      font-size: 1.2em;
      font-family: "Raleway";
      font-weight: 600;
      padding: 0 0.5em;
      z-index: 1;
      color: #ffffff; }
      @media screen and (max-width: 650px) {
        .contactSection .formContainer .row .column .inputBox input, .contactSection .formContainer .row .column .inputBox.textArea textarea {
          font-size: 1em; } }
      .contactSection .formContainer .row .column .inputBox input:focus + .text, .contactSection .formContainer .row .column .inputBox.textArea textarea:focus + .text, .contactSection .formContainer .row .column .inputBox input:valid + .text, .contactSection .formContainer .row .column .inputBox.textArea textarea:valid + .text {
        top: -2em;
        left: -0.5em; }
      .contactSection .formContainer .row .column .inputBox input:focus ~ .line, .contactSection .formContainer .row .column .inputBox.textArea textarea:focus ~ .line, .contactSection .formContainer .row .column .inputBox input:valid ~ .line, .contactSection .formContainer .row .column .inputBox.textArea textarea:valid ~ .line {
        height: 100%; }
    .contactSection .formContainer .row .column .inputBox .text {
      position: absolute;
      top: 0;
      left: 0;
      line-height: 40px;
      font-size: 1.2em;
      padding: 0 0.5em;
      display: block;
      transition: 0.5s;
      pointer-events: none;
      font-family: "Montserrat";
      font-weight: 600;
      letter-spacing: 1px; }
      @media screen and (max-width: 650px) {
        .contactSection .formContainer .row .column .inputBox .text {
          font-size: 1em; } }
    .contactSection .formContainer .row .column .inputBox .line {
      position: absolute;
      bottom: 0;
      display: block;
      width: 100%;
      height: 2px;
      background-color: #ee9d53;
      transition: 0.5s;
      border-radius: 2px;
      pointer-events: none; }
    .contactSection .formContainer .row .column .inputBox.textArea {
      position: relative;
      width: 100%;
      height: 100px;
      padding: 10px 0; }
    .contactSection .formContainer .row .column .inputBox.textArea textarea {
      height: 100%;
      resize: none; }
    .contactSection .formContainer .row .column button {
      border: none;
      border-radius: 2px;
      outline: none;
      font-family: "Raleway";
      font-size: 1.3em;
      font-weight: 600;
      letter-spacing: 1px;
      margin: 0  0.5em;
      padding: 0.4em 2em;
      cursor: pointer;
      background-color: #ee9d53;
      color: #572B4B;
      transition: all 0.5s ease; }
      .contactSection .formContainer .row .column button:hover {
        background-color: #ac3b69;
        color: #ffffff; }

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2em; }
  footer .socialMediaIcons {
    display: flex;
    flex: row nowrap;
    justify-content: center;
    align-items: center; }
    footer .socialMediaIcons .icon {
      padding: 1em 0.8em;
      font-size: 2em;
      color: #ee9d53;
      transition: all 0.5s ease; }
      footer .socialMediaIcons .icon:hover {
        color: #ffffff;
        transform: scale(1.2); }
  footer .copyright {
    padding: 1em;
    color: #ee9d53;
    opacity: 0.7; }

body {
  background-color: #2A1626;
  font-family: "Raleway"; }
/*# sourceMappingURL=styles.css.map */
