@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: all 400ms ease-out;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:16px;'><text y='50%'>🐞</text></svg>") 16 0, auto;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #1d1d1d;
  padding: 0.5rem;
  font-family: "Roboto Mono", monospace;
  color: #d1d1d1;
  display: flex;
  gap: 0.5rem;
  overflow: hidden;
}

a {
  cursor: pointer;
  color: #d1d1d1;
  transition: all 450ms ease-out;
  text-decoration: none;
  border-bottom: 3px solid #1d1d1d;
}
a:hover {
  border-bottom: 3px solid #c56cf0;
}

ul {
  list-style: none;
}

i {
  color: #d1d1d1;
}

img {
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

::-moz-selection {
  background-color: #c56cf0;
  color: #1d1d1d;
}

::selection {
  background-color: #c56cf0;
  color: #1d1d1d;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:32px;'><text y='50%'>🐞</text></svg>") 16 0, auto;
}

.btn {
  border: 4px solid #c56cf0;
  padding: 1rem;
  display: inline-block;
  transition: all 450ms ease-out;
  font-weight: 500;
  border-radius: 0.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn:hover {
  border: 4px solid #c56cf0;
  background-color: #c56cf0;
  color: #1d1d1d;
}

.navbar {
  height: calc(100vh - 1rem);
  width: -moz-fit-content;
  width: fit-content;
  max-width: 30vw;
  background-color: #4b4b4b;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2.6rem;
  border-radius: 0.2rem;
}
.navbar .logo {
  font-size: 1.6rem;
  color: #c56cf0;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.navbar ul {
  list-style: none;
}
.navbar ul li {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  cursor: pointer;
  border-bottom: 3px solid #4b4b4b;
  transition: all 450ms ease-in-out;
}
.navbar ul li:hover {
  border-bottom: 3px solid #c56cf0;
}
.navbar ul li:last-of-type {
  margin-bottom: 0rem;
}
.navbar ul li a {
  color: #d1d1d1;
  border: none;
}

.mobile-nav-toggle {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 2rem;
  width: 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: transparent;
  outline: none;
  border: none;
  z-index: 5;
  transition: all 0.6s ease-in;
  display: none;
}

.mobile-nav-toggle i {
  transition: all 450ms ease-in-out;
  z-index: 10;
}

.fa-times {
  color: #1d1d1d;
}

.mobile-nav {
  top: 0px;
  height: 0px;
  overflow: hidden;
  width: 100%;
  align-items: center;
  z-index: 2;
  position: fixed;
  background: #d1d1d1;
  display: flex;
  justify-content: center;
  transition: height 0.5s ease-in;
}
.mobile-nav ul li {
  margin: 0.5rem;
  font-size: 1.4rem;
  text-align: center;
}
.mobile-nav ul li a {
  color: #4b4b4b;
}

.main {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.main::-webkit-scrollbar {
  background: #1d1d1d;
  width: 0.4rem;
  border-radius: 0.2rem;
}

.main::-webkit-scrollbar-thumb {
  background: #4b4b4b;
}

section {
  padding: 2rem;
  scroll-snap-align: start;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  font-size: 2rem;
}

.section-container {
  flex: 1;
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}

.section-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-content {
  width: 60%;
}

.section-img img {
  width: 80%;
  max-width: 100%;
}

.section-btn {
  margin-top: 2rem;
  align-self: flex-start;
}

.landing {
  display: flex;
  gap: 0.6rem;
  height: 100%;
}
.landing .info {
  width: 100%;
  display: flex;
  flex: 2;
  flex-direction: column;
  justify-content: space-around;
}
.landing .info .landing-welcome-msg {
  font-size: 4vw;
}
.landing .info .landing-subtitle {
  margin: 1rem 0rem;
  font-size: 2vw;
}
.landing .info .contact-btn {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6vw;
  letter-spacing: 2px;
}
.landing .webdev-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing .webdev-img img {
  width: 100%;
}

.projects ul,
.experience ul {
  padding: 0.6rem 0;
}
.projects .project-name,
.experience .project-name {
  padding: 0.6rem 0;
  font-size: 1rem;
}
.projects .project-details,
.experience .project-details {
  margin-left: 4rem;
  font-size: 0.9rem;
  list-style: disc;
}

.social-media {
  width: 50%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.social-media a {
  border: none;
}
.social-media i {
  font-size: 3rem;
  cursor: pointer;
  transition: all 450ms ease;
}
.social-media i:hover {
  color: #c56cf0;
}

@media screen and (min-width: 1000px) {
  .mobile-nav {
    height: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .navbar {
    display: none;
  }
  .mobile-nav-toggle {
    display: grid;
  }
  section {
    padding: 2rem 1.4rem;
  }
  section .section-title {
    font-size: 1.4rem;
  }
  .section-container {
    flex-direction: column;
    align-items: center;
    height: calc(100% - 5rem);
    gap: 1rem;
  }
  .section-content {
    font-size: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .projects .project-name,
  .experience .project-name {
    padding-top: 0.1rem;
    font-size: 1rem;
  }
  .projects .project-details {
    margin-left: 2rem;
  }
  .project-name a {
    font-size: 1rem;
  }
  .section-btn {
    margin-top: 0rem;
  }
  .landing {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .landing .info {
    align-items: center;
    flex: 1;
    width: 100%;
  }
  .landing .info .landing-welcome-msg {
    font-size: 1.8rem;
  }
  .landing .info .landing-subtitle {
    font-size: 1.4rem;
  }
  .landing .info .contact-btn {
    font-size: 1.2rem;
  }
  .landing .webdev-img {
    display: grid;
    place-items: center;
    width: 100%;
  }
}
.text-decoration-none {
  border-bottom: none;
  padding: 0;
}
.text-decoration-none:hover {
  border-bottom: none;
}

.highlight {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: from-font;
  text-decoration-color: rgba(197, 108, 240, 0.6);
}

@counter-style glitter {
  system: cyclic;
  symbols: "✨";
  suffix: " ";
}
.list-item {
  margin-left: 1.5rem;
  list-style-type: glitter;
}/*# sourceMappingURL=style.css.map */