@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap");
.home-bg {
  font: 18px "Nunito", sans-serif;
  color: black;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("/src/img/bg.png") no-repeat center;
  background-size: cover;
  -webkit-animation: backgroundZoomAnimate 20s forwards;
          animation: backgroundZoomAnimate 20s forwards;
}

.projects-bg {
  font: 18px "Nunito", sans-serif;
  color: black;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(45deg, #242F36, #161d2c);
  display: flex;
  overflow: hidden;
}

.container {
  margin: 0;
  border: 0;
  padding: 0;
  width: 100px;
  height: 100%;
  background-color: #242F36;
}
.container .vertical-navbar {
  left: 15px;
  top: 2%;
  height: 70px;
  width: 70px;
  background-color: white;
  border-radius: 50px;
  position: relative;
  transition: 0.4s ease;
}
.container .vertical-navbar .toggleBox {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50px;
}
.container .vertical-navbar .toggleBox .icon {
  position: absolute;
  height: 4px;
  width: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #161d2c;
  border-radius: 50px;
}
.container .vertical-navbar .toggleBox .icon::before, .container .vertical-navbar .toggleBox .icon::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #161d2c;
  border-radius: 50px;
  transition: 0.3s;
}
.container .vertical-navbar .toggleBox .icon::before {
  top: 12px;
}
.container .vertical-navbar .toggleBox .icon::after {
  top: -7px;
}
.container .vertical-navbar .toggleBox.active .icon {
  width: 0;
}
.container .vertical-navbar .toggleBox.active .icon::before {
  width: 40px;
  transform-origin: right;
  transform: translate(-25px, 4px) rotate(45deg);
}
.container .vertical-navbar .toggleBox.active .icon::after {
  width: 40px;
  transform: translate(-20px, 8px) rotate(-45deg);
}
.container .vertical-navbar .navItems {
  width: 100%;
  visibility: hidden;
}
.container .vertical-navbar .navItems li {
  list-style: none;
  padding: 0;
  padding-top: 10px;
}
.container .vertical-navbar .navItems li a {
  color: #161d2c;
}
.container .vertical-navbar .navItems li a svg {
  padding: 0;
  transform: scale(0);
  position: relative;
  display: block;
  margin: auto;
}
.container .vertical-navbar .navItems li a span {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 5px 0;
  padding-bottom: 25px;
}
.container .vertical-navbar.active {
  height: 360px;
}
.container .vertical-navbar.active .navItems {
  visibility: visible;
}
.container .vertical-navbar.active .navItems li a svg {
  transform: scale(1.5);
  transition: 0.4s ease;
  transition-delay: 0.18;
}
.container .vertical-navbar.active .navItems li a span {
  transition: 0.4s ease;
  transform: scale(1);
  transition-delay: 0.18;
}
.container .vertical-navbar.active .navItems li:hover a svg {
  transition: 0.2s ease;
  color: #8263fd;
}
.container .vertical-navbar.active .navItems li:hover a span {
  transition: 0.2s ease;
  color: #8263fd;
}

@-webkit-keyframes backgroundZoomAnimate {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes backgroundZoomAnimate {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.profile-card {
  box-shadow: 0 18px 200px -60px black;
  border-radius: 50px;
  width: 650px;
  position: relative;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2509803922);
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .profile-card {
    width: auto;
  }
}
.profile-card__img img {
  margin: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  box-shadow: 0 10px 60px -10px rgba(13, 28, 39, 0.5);
}
.profile-card__desc {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.profile-card__desc h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.profile-card__desc h1 + div {
  font-size: 20px;
}
.profile-card__info {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 576px) {
  .profile-card__info {
    gap: 30px;
  }
}
.profile-card__info > div {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}
.profile-card__info > div > *:first-child {
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.profile-card__info > div > *:last-child {
  font-size: 16px;
  padding-top: 10px;
  opacity: 0.7;
}
.profile-card__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.profile-card__social a {
  display: inline-flex;
  width: 55px;
  height: 55px;
  margin: 15px;
  border-radius: 40%;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .profile-card__social a {
    width: 50px;
    height: 50px;
    margin: 10px;
  }
}
@media screen and (min-width: 768px) {
  .profile-card__social a:hover {
    transform: scale(1.2) translateY(-5px);
  }
}
.profile-card__social a.github {
  background: linear-gradient(45deg, #333, #111111);
  box-shadow: 0 4px 30px rgba(11, 13, 16, 0.5);
}
.profile-card__social a.twitter {
  background: linear-gradient(45deg, #1da1f2, #0e71c8);
  box-shadow: 0 4px 30px rgba(19, 127, 212, 0.7);
}
.profile-card__social a.instagram {
  background: linear-gradient(45deg, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D);
  box-shadow: 0 4px 30px rgba(120, 64, 190, 0.6);
}
.profile-card__social a.discord {
  background: linear-gradient(45deg, #5865F2, #5865F2);
  box-shadow: 0 4px 30px rgba(14, 111, 222, 0.7);
}
.profile-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .profile-card__actions {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.profile-card__actions > a {
  font-weight: bold;
  font-size: 22px;
  padding: 15px 0;
  min-width: 250px;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .profile-card__actions > a {
    min-width: 170px;
  }
}
@media screen and (max-width: 576px) {
  .profile-card__actions > a {
    min-width: inherit;
    width: 100%;
    max-width: 350px;
  }
}
@media screen and (min-width: 576px) {
  .profile-card__actions > a:hover {
    transform: translateY(-5px);
  }
}
.profile-card__actions > a.blue {
  background: linear-gradient(45deg, #8263fd, #5111e6);
  box-shadow: 0 4px 30px rgba(122, 61, 219, 0.4);
}
.profile-card__actions > a.blue:hover {
  box-shadow: 0 7px 30px rgba(122, 61, 219, 0.75);
}
.profile-card__actions > a.orange {
  background: linear-gradient(45deg, #d5135a, #f05924);
  box-shadow: 0 4px 30px rgba(223, 45, 70, 0.35);
}
.profile-card__actions > a.orange:hover {
  box-shadow: 0 7px 30px rgba(223, 45, 70, 0.75);
}/*# sourceMappingURL=style.css.map */