.navbar {
  background-color: #212121;
  width: 100vw;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 91, 91, 0.5764705882);
}
.navbar .nav_logo {
  width: 100%;
  max-height: 100%;
  padding: 10px;
}
.navbar .nav_logo img {
  height: 100%;
}
.navbar .nav_links {
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: right;
}
.navbar .nav_links .nav_btn {
  width: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  border-left: 1px solid rgba(255, 91, 91, 0.5764705882);
  color: #f84a4a;
  text-align: center;
  opacity: 50%;
}
.navbar .nav_links .nav_btn:hover,
.navbar .nav_links .nav_btn_active {
  opacity: 100%;
  font-weight: bold;
}

.project_list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: hidden;
  padding: 4% 0px;
  gap: 100px;
}

.project_card {
  height: 30vh;
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.project_card .project_name {
  width: 100%;
  position: absolute;
  bottom: -6vh;
  margin: 0;
  z-index: 10;
  text-wrap: nowrap;
  font-size: 3vh;
  text-align: center;
}
.project_card .code_card,
.project_card .preview_card {
  height: 30vh;
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  border: rgba(255, 255, 255, 0.8823529412) solid 0.25vh;
  border-radius: 0.5vh;
  transition: transform 0.2s linear, left 0.2s linear;
  cursor: pointer;
}
.project_card .code_card .background_image,
.project_card .preview_card .background_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5vh;
}
.project_card .code_card .background_image img,
.project_card .preview_card .background_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  filter: blur(0.3vh);
  transform: scale(1.1);
}
.project_card .code_card .card_title,
.project_card .preview_card .card_title {
  opacity: 0%;
  position: absolute;
  top: 0;
  margin: 0;
  font-size: 3vh;
  transition: top 0.2s linear, opacity 0.3s linear;
  z-index: -1;
}
.project_card .code_card {
  top: 0%;
  left: -10%;
  box-shadow: -5px 5px 20px #000000;
}
.project_card .code_card .background_image {
  -o-object-position: right;
     object-position: right;
}
.project_card .code_card .card_title {
  color: #eb3232;
}
.project_card .preview_card {
  top: -1%;
  left: 10%;
  box-shadow: -5px 5px 20px #000000;
}
.project_card .preview_card .card_title {
  color: #2c64ff;
}

.project_card:hover .code_card .card_title,
.project_card:hover .preview_card .card_title {
  opacity: 100%;
  top: -20%;
  transition: top 0.2s linear, opacity 0.05s linear;
}
.project_card:hover .code_card {
  transform: rotate(-15deg);
  left: -15%;
  transition: transform 0.2s linear, left 0.2s linear;
}
.project_card:hover .preview_card {
  transform: rotate(15deg);
  left: 30%;
  transition: transform 0.2s linear, left 0.2s linear;
}
.project_card:hover .code_card:hover {
  border-color: #eb3232;
  box-shadow: rgba(235, 50, 50, 0.7254901961) 0px 0px 2vh;
}
.project_card:hover .preview_card:hover {
  border-color: #2c64ff;
  box-shadow: rgba(44, 100, 255, 0.7254901961) 0px 0px 2vh;
}

.skill_list {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: baseline;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: scroll;
  padding: 4% 0px;
}
.skill_list .skills {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-direction: row;
  position: relative;
  left: 0;
}

.skill_list::-webkit-scrollbar {
  height: 5px;
}

.skill_list::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0);
}

.skill_list::-webkit-scrollbar-thumb {
  background: #ff5d5d;
}

.skill_list::-webkit-scrollbar-thumb:hover {
  background: #d44848;
}

.skill_card {
  height: 40vh;
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: -5px 5px 20px #000000;
  border-radius: 0.5vh;
  margin: 0% 10px;
  cursor: pointer;
}
.skill_card .skill_proficiency_section {
  height: 2%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: baseline;
  align-items: center;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.skill_card .skill_proficiency_section .skill_proficiency {
  height: 100%;
  width: 20%;
  background-color: #37ff7a;
  margin: 0px 1%;
  border-radius: 2px;
  opacity: 0%;
  transition: opacity 0.5s linear 0s;
}
.skill_card .skill_image {
  height: 97%;
  position: absolute;
}

.skill_card:hover .skill_proficiency:nth-child(1) {
  opacity: 100%;
  transition: opacity 0.4s linear 0.1s;
}
.skill_card:hover .skill_proficiency:nth-child(2) {
  opacity: 100%;
  transition: opacity 0.4s linear 0.2s;
}
.skill_card:hover .skill_proficiency:nth-child(3) {
  opacity: 100%;
  transition: opacity 0.4s linear 0.3s;
}
.skill_card:hover .skill_proficiency:nth-child(4) {
  opacity: 100%;
  transition: opacity 0.4s linear 0.4s;
}
.skill_card:hover .skill_proficiency:nth-child(5) {
  opacity: 100%;
  transition: opacity 0.4s linear 0.5s;
}

.personal_history {
  height: 50%;
  width: 75%;
  overflow-y: scroll;
}
.personal_history .history_item {
  display: flex;
  flex-direction: column;
  margin-bottom: 5%;
}
.personal_history .history_item .history_item_date {
  color: #ff5656;
  margin: 0;
  font-family: Verdana;
  font-size: 20px;
  font-weight: bold;
  text-shadow: -2px 2px 5px #000000;
}
.personal_history .history_item .history_item_description {
  width: 75%;
  font-family: Verdana;
  font-size: 18px;
  margin-left: 5%;
}

.personal_history::-webkit-scrollbar {
  width: 5px;
}

.personal_history::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0);
}

.personal_history::-webkit-scrollbar-thumb {
  background: #ff5d5d;
}

.personal_history::-webkit-scrollbar-thumb:hover {
  background: #d44848;
}

.featured_content {
  height: 50vh;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: -5px 5px 20px #000000;
  overflow: hidden;
  border-radius: 1vh;
}
.featured_content .featured_url,
.featured_content .featured_information,
.featured_content .featured_image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.featured_content .featured_url {
  opacity: 0%;
  z-index: 2;
  cursor: pointer;
}
.featured_content .featured_information {
  background-color: rgba(0, 0, 0, 0.4784313725);
  opacity: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.2s linear;
}
.featured_content .featured_information .featured_title {
  color: #ffffff;
  width: 80%;
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-family: Verdana;
  font-weight: bold;
  text-shadow: -2px 2px 1px #000000;
  z-index: 1;
}
.featured_content .featured_information .featured_author {
  color: #ffffff;
  width: 80%;
  margin: 0;
  margin-top: 2vh;
  padding-top: 2vh;
  text-align: center;
  font-size: 20px;
  font-family: Verdana;
  font-weight: bold;
  border-top: 1px dashed #ffffff;
  z-index: 1;
}

.featured_content:hover .featured_information {
  opacity: 100%;
  transition: opacity 0.25s linear;
}
.featured_content:hover .featured_image {
  filter: blur(1vh);
}

.content {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.content .person_name_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.content .person_name_container .name,
.content .person_name_container .surname {
  margin: 0;
  margin-top: 5%;
  font-size: 100px;
  pointer-events: none;
  z-index: 1;
}
.content .person_name_container .name {
  margin-left: 7%;
}
.content .person_name_container .surname {
  margin-left: 40px;
}
.content .person_name_container .gateway {
  position: absolute;
  top: 25%;
  height: 30%;
}
.content .person_name_container .gateway .gateway_diacritic_acute {
  position: relative;
  pointer-events: none;
  color: #ff4848;
  margin: 0;
  font-size: 100px;
  z-index: 10;
}
.content .person_name_container .gateway .rippler {
  position: absolute;
  top: 40px;
  left: 18px;
  opacity: 5%;
  pointer-events: none;
}
.content .person_name_container .gateway .rippler .ripples {
  position: relative;
}
.content .person_name_container .gateway .rippler .ripples .ripple {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.content .person_name_container .gateway .rippler .ripples .ripple i {
  color: #ff4848;
  opacity: 0%;
}
.content .person_name_container .gateway .rippler .ripples .ripple[data-index="1"] i {
  animation-delay: 0s;
}
.content .person_name_container .gateway .rippler .ripples .ripple[data-index="2"] i {
  animation-delay: 1s;
}
.content .person_name_container .gateway .rippler .ripples .ripple[data-index="3"] i {
  animation-delay: 2s;
}
.content .person_name_container .gateway:hover {
  cursor: pointer;
}
.content .person_name_container .gateway:hover .rippler i {
  animation-name: ripple_anim;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.gateway_opener {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}
.gateway_opener .backgrounds {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 0px;
  height: 0px;
  position: relative;
}
.gateway_opener .backgrounds .opener_background {
  width: 5px;
  aspect-ratio: 1/1;
  background-color: #ff4848;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
.gateway_opener .backgrounds .closer_background {
  width: 0px;
  aspect-ratio: 1/1;
  background-color: #111111;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.gateway_opener.open .backgrounds .opener_background {
  animation: open_gateway_anim 0.75s linear 0s forwards;
}
.gateway_opener.open .backgrounds .closer_background {
  animation: open_gateway_anim 0.75s linear 0.45s forwards;
}

@keyframes ripple_anim {
  0% {
    opacity: 0%;
    font-size: 30px;
  }
  10% {
    opacity: 100%;
    font-size: 30px;
  }
  100% {
    opacity: 0%;
    font-size: 100vw;
  }
}
@keyframes open_gateway_anim {
  0% {
    width: 5px;
  }
  100% {
    width: 150vw;
  }
}
.home_page {
  opacity: 0%;
  animation: pageLoad 1s linear 0s forwards;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.home_page .body_content {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
}
.home_page .bio_section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_page .bio_section img {
  width: 200px;
}
.home_page .bio_section .description {
  color: #ff5d5d;
  width: 60vw;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}
.home_page .bio_section .contact_details {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0px;
  border-width: 0px;
  border-color: rgba(255, 255, 255, 0.1254901961);
  border-style: solid;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.home_page .bio_section .contact_details .phone,
.home_page .bio_section .contact_details .email,
.home_page .bio_section .contact_details .linked_in,
.home_page .bio_section .contact_details .discord {
  text-decoration: none;
  text-shadow: 0px 0px 0px;
  transition: text-shadow 0.5s linear;
}
.home_page .bio_section .contact_details .phone {
  color: #58ff53;
}
.home_page .bio_section .contact_details .email {
  color: #ff7b53;
}
.home_page .bio_section .contact_details .linked_in {
  color: #53acff;
  cursor: pointer;
}
.home_page .bio_section .contact_details .discord {
  color: #896ffd;
  cursor: pointer;
}
.home_page .bio_section .contact_details .linked_in:hover,
.home_page .bio_section .contact_details .discord:hover {
  text-shadow: 0px 0px 15px;
  transition: text-shadow 0.5s linear;
}
.home_page .section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_page .section .section_title {
  font-size: 50px;
  font-family: monospace;
  color: rgba(255, 100, 100, 0.5607843137);
  pointer-events: none;
}

.home_page .body_content::-webkit-scrollbar {
  width: 1px;
}

.home_page .body_content::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0);
}

.home_page .body_content::-webkit-scrollbar-thumb {
  background: #ff5d5d;
}

.home_page .body_content::-webkit-scrollbar-thumb:hover {
  background: #d44848;
}

@keyframes pageLoad {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
.code_page .in_dev_message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.code_page .in_dev_message h1 {
  color: #f34242;
  width: 50%;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  font-family: Verdana;
}
.code_page .in_dev_message h2 {
  color: #69a5ff;
  width: 50%;
  text-align: center;
  font-size: 20px;
}
.code_page .in_dev_message a {
  color: #ff6767;
  font-size: 40px;
  font-weight: bold;
  font-family: monospace;
  margin-top: 20vh;
}
.code_page .in_dev_message a:hover {
  color: #c44242;
}

body {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background-color: #111111;
  color: #ffffff;
  font-family: "Segoe UI";
  margin: 0;
}/*# sourceMappingURL=main.css.map */