* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #242424;
}

::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
::-webkit-scrollbar-thumb:active {
  background: -webkit-linear-gradient(top, #fbb989, #8b95fd);
}

html {
  background: linear-gradient(#1E1E1E, #000000);
  height: -moz-fit-content;
  height: fit-content;
  z-index: -2;
  scroll-behavior: smooth;
}

body {
  padding-top: 20px;
  padding-left: 230px;
  padding-right: 230px;
  z-index: -5;
}

.grid {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 350vh;
  background-size: 10px 10px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.251) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.251) 1px, transparent 1px);
  animation: bgblink 5s ease-in-out infinite;
  z-index: -4;
}

@keyframes bgblink {}
.espaciado {
  height: 70px;
  width: auto;
  background: transparent;
}

.espaciado2 {
  height: 400px;
  width: auto;
  background: transparent;
}

.luz_tenue {
  background: linear-gradient(to bottom, #FF8E3D, #3949ff);
  background: -webkit-linear-gradient(top, #FF8E3D, #3949ff);
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 38%;
  height: 870px;
  width: 870px;
  border-radius: 0px 0px 50% 50%;
  filter: blur(12rem);
  opacity: 0.4;
}

.luz_tenue2 {
  background: linear-gradient(to bottom, #FF8E3D 1%, #3949ff 99%);
  background: -webkit-linear-gradient(top, #FF8E3D 1%, #3949ff 99%);
  width: 600px;
  height: 580px;
  filter: blur(12rem);
  position: absolute;
  top: 0;
  left: -10rem;
  transform: translateY(380%);
  z-index: -1;
  opacity: 0.3;
}

.logo_mau {
  font-family: "Lekton", monospace;
  font-size: 23px;
  font-weight: 500;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  padding: 45px;
  margin: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.logo_mau div {
  position: relative;
  bottom: 2px;
  left: 2px;
  width: 8px;
  height: 20px;
  background: rgba(255, 255, 255, 0.397);
  animation: blinker 1s step-start infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.change_theme {
  width: 45px;
  height: 45px;
  position: fixed;
  background: rgba(255, 255, 255, 0.066);
  border-radius: 50px;
  border: transparent;
  margin-inline: 20px;
  right: 0;
}
.change_theme:hover {
  cursor: pointer;
}
.change_theme i {
  color: rgb(255, 255, 255);
  font-size: 30px;
}

button.change_theme i.off {
  display: none;
}

.superior_navbar {
  background: -webkit-linear-gradient(right, #161616, #252525);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.383);
  border-radius: 50px;
  height: 60px;
  width: 350px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-evenly;
  z-index: 3;
}
.superior_navbar button {
  background: none;
  border: none;
  box-shadow: none;
}
.superior_navbar button .nav1, .superior_navbar button .nav2, .superior_navbar button .nav3, .superior_navbar button .nav4 {
  color: white;
  font-size: 35px;
  transition: all 0.2s ease;
}
.superior_navbar button .nav1:hover, .superior_navbar button .nav2:hover, .superior_navbar button .nav3:hover, .superior_navbar button .nav4:hover {
  color: rgb(255, 131, 15);
  margin-inline: 4px;
  font-size: 38px;
  cursor: pointer;
}

.presentacion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}

.title_container {
  position: relative;
  top: 110px;
}

.salute {
  font-size: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.526);
  padding-top: 40px;
  margin: 0;
}

.title_name {
  font-size: 80px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  color: white;
  position: relative;
  line-height: 120px;
  margin: 0;
}

.last_name {
  background: -webkit-linear-gradient(left, #FF8E3D, #3949ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 40px;
  font-weight: 300;
  font-family: "JetBrains Mono", monospace;
  color: white;
  padding-top: 18px;
  padding-bottom: 8rem;
  margin: 0;
}

.profile_image_container {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 95px;
  width: 320px;
  height: 420px;
  border-radius: 20px;
  margin: 0;
}
.profile_image_container img {
  width: 280px;
  margin: 20px;
}

.profile_buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.profile_buttons button {
  background: white;
  border: transparent;
  height: 40px;
  width: 60px;
  margin-inline: 15px;
}
.profile_buttons button i {
  font-size: 40px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.profile_buttons button i:hover {
  transform: translateY(-4px);
  cursor: pointer;
}
.profile_buttons button i:active {
  color: rgba(0, 0, 0, 0.788);
}

.personal_section {
  position: relative;
  top: 15rem;
  background: rgba(255, 255, 255, 0);
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.who_am_i_container,
.my_uni_container,
.status_container {
  margin: 10px;
}

.who_am_i_container {
  background: -webkit-linear-gradient(right, rgba(102, 102, 102, 0.16), rgba(0, 0, 0, 0.16));
  height: -moz-fit-content;
  height: fit-content;
  width: 824rem;
  display: grid;
  grid-template-columns: 4fr 1.8fr;
  border: solid 1.5px rgba(255, 255, 255, 0.188);
  border-radius: 20px;
}
.who_am_i_container p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
  margin-left: 80px;
  margin-top: 40px;
  font-size: 28px;
}
.who_am_i_container h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 65px;
  font-weight: 900;
  text-align: end;
  color: white;
  margin: 28px;
  position: relative;
  top: 50px;
}

.mexico {
  background: -webkit-linear-gradient(left, rgb(109, 221, 109), white, rgb(251, 116, 116));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.my_uni_container {
  background: linear-gradient(black, rgba(0, 0, 0, 0.908));
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 20px;
  width: 660px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: center;
  align-items: center;
  margin: 1px;
}
.my_uni_container:hover {
  border-color: #bcc2fe;
}
.my_uni_container p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
  margin-left: 80px;
  margin-top: 40px;
  font-size: 28px;
}
.my_uni_container img {
  justify-self: center;
  align-self: center;
  height: 160px;
}

.my_uni_border {
  background: -webkit-linear-gradient(left, #FF8E3D, #3949ff);
  border-radius: 20px;
  display: inline-block;
}

.status_container {
  background: -webkit-linear-gradient(right, #101010, #000000);
  border: 1.5px solid;
  border-color: rgba(255, 255, 255, 0.183);
  border-radius: 20px;
  height: 260px;
  width: 460px;
}
.status_container p {
  font-family: "JetBrains Mono", monospace;
  font-weight: 200;
  font-size: 23px;
  margin: 30px;
  margin-left: 45px;
  color: white;
}

.status_title {
  display: flex;
  flex-direction: row;
}
.status_title div {
  background: #41ff54;
  height: 20px;
  width: 20px;
  border-radius: 15px;
  margin-top: 39px;
  margin-inline: 20px;
  animation: blinker 1.5s linear infinite;
}
.status_title h3 {
  font-family: "Plus Jakarta Sans", monospace;
  font-size: 28px;
  color: white;
  margin: 0;
  margin-top: 28px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.proejcts_section {
  position: absolute;
  top: 30px;
}

.projects_title {
  font-family: "Plus Jakarta Sans", monospace;
  font-size: 78px;
  font-weight: 900;
  color: white;
}
.projects_title i {
  position: relative;
  top: 5px;
  left: 10px;
}

.projects_subtitle {
  font-family: "JetBrains Mono", monospace;
  font-size: 34px;
  color: white;
}

.projects_containers {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  width: auto;
  height: 45rem;
}

.project {
  display: flex;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: center;
  align-items: center;
}

.project_info {
  margin: 20px;
  height: auto;
}

.project_img {
  margin: 20px;
  height: 360px;
}

.project_info {
  width: 45%;
  background: linear-gradient(#2A2A2A, #171717);
  border: 1px solid;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.298);
}

.project_title, .project_desc {
  margin: 45px;
  color: white;
  font-family: "Plus Jakarta Sans", monospace;
}

.project_title {
  font-size: 45px;
}

.project_desc {
  font-size: 18px;
  font-weight: 100;
}

.link {
  text-decoration: none;
  color: #fd9c57;
}

.project_img {
  width: 520px;
  display: flex;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
}

#gastrack_cont {
  background: linear-gradient(#12112B, #613D2E);
}

#moonhike_cont {
  background: linear-gradient(#FFDCB4, #7986FB);
}

.gastrack_img {
  width: -moz-fit-content;
  width: fit-content;
  height: 390px;
  justify-self: center;
  align-self: center;
  transition: transform 1.3s ease;
}
.gastrack_img:hover {
  transform: scale(1.05);
}

.moonhike_img {
  height: 310px;
  transition: transform 1.3s ease;
}
.moonhike_img:hover {
  transform: scale(1.05);
}

.project_stack {
  margin: 45px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.stack_item {
  width: auto;
  height: 22px;
  padding: 20px;
  border-radius: 8px;
  color: white;
  font-size: 20px;
  font-family: "Plus Jakarta Sans", monospace;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stack_item i {
  position: relative;
  font-size: 23px;
  padding-right: 5px;
}

#flutter_label {
  background-color: rgba(41, 61, 81, 0.4117647059);
}

#firebase_label {
  background-color: rgba(89, 66, 39, 0.337254902);
}

#google_label {
  background-color: rgba(68, 88, 56, 0.337254902);
}

.see_repo {
  background: transparent;
  border: transparent;
  color: rgb(103, 184, 255);
  font-size: 18px;
  position: relative;
  float: right;
  margin: 0px;
  bottom: 20px;
  right: 30px;
  transition: all 0.2s ease;
}
.see_repo:hover {
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.see_repo:active {
  color: rgb(253, 180, 108);
  cursor: pointer;
}

.filter_buttons_container {
  position: relative;
  max-width: 1350px;
  width: 100%;
}

.filter_buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
  flex-wrap: wrap;
}
.filter_buttons button {
  padding: 20px 40px;
  background: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", monospace;
}

.filter_buttons > button.active {
  background: linear-gradient(rgb(20, 20, 20), black);
  border-radius: 20px;
  border: 1.5px solid hsl(0, 0%, 100%);
  color: white;
}

.filterable_skills {
  margin: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.skill {
  flex-basis: 200px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgb(20, 20, 20), black);
  border-radius: 20px;
  border: 1.5px solid rgb(30, 30, 30);
  height: 170px;
}
.skill img {
  width: 80px;
}

.skill_name {
  color: white;
  font-size: 20px;
  font-family: "Plus Jakarta Sans", monospace;
  font-weight: 800;
  margin: 10px;
}

.skill.grayscale {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}/*# sourceMappingURL=style.css.map */