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

body {
  width: 100%;
  margin: 0 auto;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  background-color: #f3f3f3;
}

section {
  position: relative;
  overflow: hidden;
}

/* DISABLE CSS TRANSITION ON MEDIA QUERY */
body.stop-transition .nav-menu {
  transition: none !important;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}

.title-section {
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 2px 2px 5px #484848;
}
.title-section::after {
  content: "";
  display: block;
  border-bottom: 15px solid hsl(332deg, 100%, 56%);
  border-radius: 10px;
  box-shadow: 2px 2px 10px hotpink;
  width: 8rem;
  position: absolute;
  left: 0.5em;
  bottom: -0.1em;
  z-index: -1;
}

@media (min-width: 768px) {
  .col {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .row {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
}

body {
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

h3 {
  font-size: 1.5rem;
  text-shadow: 2px 2px 5px #484848;
}

p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Hamburger */
.hamburger {
  padding: 15px;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hamburger-inner {
  background-color: #484848;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
  transition: top 0.15s 0.15s ease, opacity 0.1s ease;
}
.hamburger-inner::after {
  bottom: -7px;
  transition: bottom 0.15s 0.15s ease, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 20px;
  height: 3px;
  background-color: #484848;
  position: absolute;
}

.hamburger.active {
  position: fixed;
  right: 0;
  height: 4.5rem;
}
.hamburger.active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.15s ease, opacity 0.1s 0.15s ease;
}
.hamburger.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.15s ease, transform 0.15s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.waves {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 1;
  top: 0;
  position: relative;
  left: 0px;
  float: left;
  background-color: transparent;
}
@media (min-width: 768px) {
  .waves {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.wave1 use {
  -webkit-animation: left-wave 10s linear infinite;
          animation: left-wave 10s linear infinite;
  fill: hsl(332deg, 100%, 56%);
}

.wave2 use {
  -webkit-animation: right-wave 8s linear infinite;
          animation: right-wave 8s linear infinite;
  fill: hsl(220deg, 73%, 58%);
}

.wave3 use {
  -webkit-animation: left-wave 6s linear infinite;
          animation: left-wave 6s linear infinite;
  fill: #4e5da6;
}

.wave4 use {
  -webkit-animation: right-wave 4s linear infinite;
          animation: right-wave 4s linear infinite;
  fill: hsl(172deg, 80%, 53%);
}

@-webkit-keyframes left-wave {
  from {
    transform: translateX(85px);
  }
  to {
    transform: translateX(-90px);
  }
}

@keyframes left-wave {
  from {
    transform: translateX(85px);
  }
  to {
    transform: translateX(-90px);
  }
}
@-webkit-keyframes right-wave {
  from {
    transform: translateX(-90px);
  }
  to {
    transform: translateX(85px);
  }
}
@keyframes right-wave {
  from {
    transform: translateX(-90px);
  }
  to {
    transform: translateX(85px);
  }
}
.divider-wave {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 1;
  bottom: 0;
  position: absolute;
  left: 0px;
  float: left;
  background-color: transparent;
}
.divider-wave .wave2 use {
  -webkit-animation: right-wave 8s linear infinite;
          animation: right-wave 8s linear infinite;
}

/* Header */
header {
  height: 4.5rem;
}

.nav {
  height: 4.5rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f3f3f3;
  box-shadow: 0 1px 5px #d3d3d3;
  position: fixed;
  top: 0;
  left: 0;
  transition: top 0.3s;
  z-index: 2;
}

.nav a {
  height: 100%;
}

.logo {
  height: 100%;
  padding: 0 10px;
  filter: drop-shadow(1px 1px 1px black);
}

.nav-menu {
  position: absolute;
  width: 300px;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  background-color: #f3f3f3;
  box-shadow: 0 0.5rem 1.5rem #d3d3d3;
  padding-top: 4.5rem;
  right: 0;
  transform: translateX(110%);
  transition: transform 0.3s ease-in;
}
@media (min-width: 768px) {
  .nav-menu {
    position: relative;
    width: auto;
    height: 100%;
    flex-direction: row;
    box-shadow: none;
    padding-top: 0;
    transform: translateX(0);
  }
}

.nav-menu.active {
  transform: translateX(0);
  transition: transform 0.3s ease-out;
}

.nav-menu-list {
  margin: 20px;
}

.nav-menu-link {
  padding: 20px;
  color: hsl(220deg, 73%, 58%);
  font-size: 1.2rem;
  font-weight: 700;
  transition: color 0.3s ease-in-out;
}
.nav-menu-link:hover, .nav-menu-link:focus {
  color: hsl(332deg, 100%, 56%);
}

.nav-backdrop {
  visibility: hidden;
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: hsla(0deg, 0%, 0%, 0.6);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.nav-backdrop.active {
  visibility: visible;
  opacity: 1;
}

/* Hero Section */
.hero-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  min-height: 75vh;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero-text span {
  background: hsl(226deg, 81%, 56%);
  background: linear-gradient(45deg, hsl(226deg, 81%, 56%), hsl(187deg, 100%, 50%));
  background-size: 500%;
  background-position: left;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-animation: text-animation 2s infinite alternate;
          animation: text-animation 2s infinite alternate;
}

@-webkit-keyframes text-animation {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}

@keyframes text-animation {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}
.hero-img {
  width: 90%;
  margin: 0 auto;
  filter: drop-shadow(2px 2px 6px black);
}

.minions {
  position: absolute;
  overflow: hidden;
  top: 0;
  height: 100%;
}

.minion {
  position: relative;
  bottom: 0;
  left: 0;
  width: 10%;
}

/* About Section */
#about {
  background: hsl(172deg, 80%, 53%);
  padding: 7rem 0;
}
#about p,
#about i,
#about li {
  color: #ffffff;
  text-shadow: 2px 2px 5px hsl(220deg, 73%, 58%);
}

.profile-picture {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.profile-picture img {
  height: 300px;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(2px 2px 10px aquamarine);
}
@media (min-width: 768px) {
  .profile-picture {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .profile-text {
    flex: 2;
  }
}

.about-me {
  margin-bottom: 3rem;
}

/* Bubbles */
.bubble_container {
  width: 100%;
  position: absolute;
  top: 0;
}
.bubble_container svg {
  height: 100%;
  overflow: visible;
}

.burst1,
.burst2,
.burst3,
.burst4 {
  opacity: 0;
}

.bubble1,
.bubble2,
.bubble3,
.bubble4,
.bubbles {
  fill: white;
  opacity: 0.8;
}

/* Skills */
.tab {
  overflow: hidden;
  z-index: 1;
  margin-bottom: 2rem;
}

.tablinks {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
  color: white;
  text-shadow: 2px 2px 5px #484848;
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1rem 2rem 1rem 0;
  position: relative;
  transition: all 0.3s;
}
.tablinks:hover {
  text-shadow: 2px 2px 0px hsl(332deg, 100%, 56%);
}

.tablinks.active {
  color: hsl(332deg, 100%, 56%);
  text-shadow: 2px 2px 0px #f4ebe8;
  transition: color 0.9s;
}

.tabcontent {
  display: none;
  color: white;
}
@media (min-width: 768px) {
  .tabcontent {
    flex: 1;
  }
}

.tab .active::after {
  content: "";
  display: block;
  border-bottom: 3px solid hsl(332deg, 100%, 56%);
  border-radius: 5px;
  width: 2rem;
  position: absolute;
  bottom: 0.5rem;
  box-shadow: 1px 1px 0px #f4ebe8;
}

.skills-row {
  display: flex;
  justify-content: center;
  max-width: 30rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .skills-row {
    margin: 0;
  }
}

.skills-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 3rem;
}

.skills-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.skills-item i {
  font-size: 4rem;
}
.skills-item .skills-name {
  white-space: nowrap;
}

.hobbies-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 1.5rem;
}
.hobbies-item i {
  width: 3rem;
  font-size: 1.5rem;
}

#projects {
  background: hsl(220deg, 73%, 58%);
  padding: 3rem 0 7rem;
  color: #ffffff;
}
@media (min-width: 1024px) {
  #projects {
    padding: 7rem 0 calc(7rem + 60px);
  }
}

.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 768px) {
  .projects {
    flex-direction: row;
  }
}

.project {
  background: #4e5da6;
  border-radius: 10px;
  animation: glow 2s infinite alternate-reverse;
}
@-webkit-keyframes glow {
  from {
    box-shadow: 0 0 10px #f3f3f3;
  }
  to {
    box-shadow: 0 0 15px hsl(187deg, 100%, 50%);
  }
}
@keyframes glow {
  from {
    box-shadow: 0 0 10px #f3f3f3;
  }
  to {
    box-shadow: 0 0 15px hsl(187deg, 100%, 50%);
  }
}
@media (min-width: 768px) {
  .project {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .project {
    width: 30%;
  }
}
.project .col {
  padding: 1rem;
}
.project .col img {
  border-radius: 10px;
  box-shadow: 2px 2px 10px white;
}

.project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.project-info {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.project-tags li {
  font-size: 0.9rem;
  border-radius: 4px;
  padding: 2px 5px;
  background: hsl(220deg, 73%, 58%);
}

.project-link {
  color: hsl(187deg, 100%, 50%);
  font-weight: bold;
  display: flex;
  gap: 0.5rem;
  transition: 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.project-link:hover {
  color: hsl(332deg, 100%, 56%);
}

/* Contact Section*/
#contact {
  background: #4e5da6;
  padding: 3rem 0;
}
#contact p {
  color: #ffffff;
  text-shadow: 2px 2px 10px hsl(220deg, 73%, 58%);
}
@media (min-width: 1024px) {
  #contact {
    padding: 7rem 0;
  }
}

footer {
  padding: 3rem 0;
  width: 100%;
  height: 100%;
  position: relative;
  background: #4e5da6;
  z-index: 0;
}

.tentacles {
  background: url(../../assets/tentacles_bg.png);
  background-repeat: repeat-x;
  position: absolute;
  background-size: contain;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 4px 6px black);
}

.tidehunter {
  background: url(../../assets/tidehunter_full.png) repeat-x 0 bottom transparent;
  position: absolute;
  background-size: contain;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 75%;
  filter: drop-shadow(2px 4px 6px black);
}

.socials {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1rem;
}
.socials a {
  font-size: 2rem;
  color: #f3f3f3;
  text-shadow: 2px 2px 10px #000;
  transition: all 0.3s ease-out;
}
.socials a:hover {
  scale: 1.2;
  text-shadow: 0 0 5px hsl(187deg, 100%, 50%);
}

.copyright {
  position: relative;
  text-align: center;
  color: #f3f3f3;
  text-shadow: 2px 2px 10px #000;
  font-size: 1rem;
  font-weight: 400;
}/*# sourceMappingURL=main.css.map */