@import url("https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:export {
  primary-color: #5F07BF;
  secondary-color: #0B07D0;
  secondary-colorB: #03008A;
  secondary-colorW: #403DD3;
  red-color: #FF0000;
  green-color: #38F299;
  gray-color: #151515;
  white: #ffffff;
  black: #000000;
  font-primary: "Poppins", sans-serif;
  font-secondary: Arial, sans-serif;
}

* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #111;
}
::-webkit-scrollbar-thumb {
  background-color: #5F07BF;
  border-radius: 8px;
}

body {
  background-color: #000000;
  font-family: Arial, sans-serif;
  overflow: hidden;
  overflow-x: hidden;
  background: #081b29;
  color: #ffffff;
  overflow: auto;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

header, .home, .s-about, .projects,
.s-experience, .s-projects, .s-services,
.s-contact, .footer {
  position: relative;
  z-index: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    padding: 15px 5%;
  }
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
.logo img {
  height: 42px;
  width: 48px;
}

.navbar {
  display: flex;
}
.navbar a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: 0.3s;
}
.navbar a:hover, .navbar a:active {
  color: #5F07BF;
}
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: 0.5s;
    overflow-y: none;
  }
  .navbar.active {
    left: 0;
  }
  .navbar a {
    margin: 15px 0;
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 21px;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.hamburger.change .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.change .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.change .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.home {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  justify-content: space-between;
  position: relative;
}
.home-logo {
  position: absolute;
  right: -10%;
  top: 60%;
  transform: translateY(-70%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.3;
}
@media (max-width: 992px) {
  .home-logo {
    display: none;
  }
}
.home-logo img {
  width: 600px;
  height: auto;
  color: #0B07D0;
}
.home-content {
  max-width: 700px;
  flex: 1;
  text-align: left;
}
.home-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 1%;
}
@media (max-width: 992px) {
  .home-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .home-content h1 {
    font-size: 36px;
  }
}
.home-content h3 {
  color: #8438D7;
  font-size: 28px;
  padding-bottom: 1%;
}
.home-content p {
  color: rgba(255, 255, 255, 0.75);
  margin: 20px 0 40px;
  font-size: 20px;
  padding-bottom: 1%;
}
.home-sci {
  position: absolute;
  bottom: 40px;
  width: 250px;
  display: flex;
  justify-content: space-between;
}
.home-sci a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #5F07BF;
  border-radius: 50%;
  font-size: 20px;
  color: #5F07BF;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}
.home-sci a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  color: #ffffff;
  background: #5F07BF;
  z-index: -1;
  transition: 0.5s;
}
.home-sci a:hover {
  color: #ffffff;
}
.home-sci a:hover::before {
  width: 100%;
}

@media (max-width: 992px) {
  .mouse {
    display: none;
  }
}

.btn-box {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 16px;
  font-weight: 700;
  color: #5F07BF;
  border: 3px solid #5F07BF;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
  transition: color 0.3s ease;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #5F07BF;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  z-index: -1;
}
.btn:hover {
  color: #ffffff;
}
.btn:hover::before {
  transform: translateY(0);
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid #eee;
  border-radius: 60px;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 50%;
}
.mouse::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #eee;
  border-radius: 50%;
  opacity: 1;
  animation: wheel 1.3s infinite;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 27px;
  }
}
.s-about {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-color: transparent;
  z-index: 3;
}
.s-about .about-container {
  background-color: #151515;
  border-radius: 10px;
  border: 1px solid #1F1F1F;
  padding: 40px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
}
.s-about .about-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.s-about .about-content img {
  max-width: 450px;
  max-height: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.s-about .about-content img:hover {
  transform: scale(1.05);
}
.s-about .about-text {
  max-width: 600px;
  flex: 1;
  text-align: left;
}
.s-about .about-text h4 {
  font-size: 20px;
  color: #5F07BF;
  margin-bottom: 5px;
}
.s-about .about-text h2 {
  font-size: 36px;
  margin: 5px 0;
  color: #ffffff;
}
.s-about .about-text h3 {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}
.s-about .about-text p {
  font-size: 16px;
  color: gray;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-buttons {
  padding-top: 2%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow: hidden;
}
.social-buttons a {
  overflow: hidden;
}

.social-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  transition: all 0.3s;
  background-color: #111;
  border: 2px solid #1f1f1f;
}
.social-btn i {
  vertical-align: middle;
}
.social-btn:hover {
  color: #5F07BF;
  transform: scale(1.1);
  border-color: #5F07BF;
}

@media (max-width: 992px) {
  .s-about-container {
    padding: 30px;
  }
  .s-about-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .s-about-text {
    max-width: 100%;
  }
  .s-about-text h2 {
    font-size: 32px;
  }
  .s-about-text h3 {
    font-size: 16px;
  }
  .s-about-text p {
    font-size: 15px;
  }
  .social-buttons {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .s-about-container {
    padding: 20px;
  }
  .s-about-text h2 {
    font-size: 28px;
  }
  .s-about-text h3 {
    font-size: 14px;
  }
  .s-about-text p {
    font-size: 14px;
    line-height: 1.4;
  }
  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
  }
  .social-buttons {
    gap: 8px;
  }
}
.s-experience {
  padding: 5% 20px;
  background-color: #151515;
  color: #ffffff;
}
.s-experience .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-experience .section-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.s-experience .experience-grid {
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .s-experience .experience-grid {
    flex-direction: column;
  }
}
.s-experience .company-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #000000;
  border-radius: 2%;
}
@media (max-width: 992px) {
  .s-experience .company-list {
    flex-direction: row;
    gap: 5px;
    justify-content: space-around;
  }
}
@media (max-width: 576px) {
  .s-experience .company-list {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
  }
}
.s-experience .company {
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.s-experience .company:hover {
  color: #5F07BF;
  border-left: solid 4px #5F07BF;
}
@media (max-width: 992px) {
  .s-experience .company {
    flex: 1;
    text-align: center;
    border-left: none;
  }
}
@media (max-width: 576px) {
  .s-experience .company {
    padding: 10px;
    font-size: 14px;
    text-align: left;
  }
}
.s-experience .experience-details {
  flex: 2;
  border-radius: 5px;
  padding: 20px;
}
@media (max-width: 992px) {
  .s-experience .experience-details {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .s-experience .experience-details {
    padding: 10px;
  }
}
.s-experience .text-experience div {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s-experience .titleExperience {
  font-size: 18px;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .s-experience .titleExperience {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .s-experience .titleExperience {
    font-size: 16px;
  }
}
.s-experience .dateExperience {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .s-experience .dateExperience {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .s-experience .dateExperience {
    font-size: 12px;
  }
}
.s-experience .companyExperience {
  color: #8438D7;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .s-experience .companyExperience {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .s-experience .companyExperience {
    font-size: 14px;
  }
}
.s-experience .changeExperience {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .s-experience .changeExperience {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .s-experience .changeExperience {
    font-size: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .s-experience {
    padding: 5% 10px;
  }
  .s-experience .section-title {
    font-size: 24px;
  }
}

.s-projects {
  padding: 60px 10%;
  text-align: center;
}
.s-projects h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}
.s-projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .s-projects .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .s-projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.s-projects .project-card {
  background-color: #151515;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-projects .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 20px rgba(73, 73, 73, 0.2);
}
.s-projects .project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .s-projects .project-card img {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .s-projects .project-card img {
    height: 150px;
  }
}
.s-projects .project-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .s-projects .project-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .s-projects .project-card h3 {
    font-size: 16px;
  }
}
.s-projects .project-card p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .s-projects .project-card p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .s-projects .project-card p {
    font-size: 12px;
  }
}
.s-projects .tags {
  margin-bottom: 15px;
}
.s-projects .tags span {
  display: inline-block;
  color: #ffffff;
  border: 1px solid #38F299;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .s-projects .tags span {
    font-size: 10px;
  }
}
.s-projects .tags span.span-html {
  border-color: rgb(255, 81, 0);
}
.s-projects .tags span.span-css {
  border-color: rgb(0, 195, 255);
}
.s-projects .tags span.span-javascript {
  border-color: rgb(255, 251, 0);
}
.s-projects .tags span.span-arduino {
  border-color: #009297;
}
.s-projects .tags span.span-python {
  border-color: #33638B;
}
.s-projects .tags span.span-game {
  border-color: #ff0202;
}
.s-projects .tags span.span-ui {
  border-color: #5F07BF;
}
.s-projects .tags span.span-figma {
  border-color: orangered;
}
.s-projects .tags span.span-react {
  border-color: #58C4DC;
}
.s-projects .tags span.span-app {
  border-color: rgb(171, 255, 16);
}
.s-projects .tags span.span-typescript {
  border-color: #3178C6;
}
.s-projects .tags span.span-vite {
  border-color: #B279DC;
}
.s-projects .tags span.span-sqlite {
  border-color: #003B57;
}
.s-projects .buttons {
  display: flex;
  gap: 4%;
}
.s-projects .project-btn {
  font-size: 16px;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
  text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  text-decoration: none;
}
.s-projects .project-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #5F07BF;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.s-projects .project-btn:hover {
  color: #ffffff;
}
.s-projects .project-btn:hover::after {
  width: 100%;
  left: 0;
}
@media (max-width: 992px) {
  .s-projects .project-btn {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .s-projects .project-btn {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .s-projects {
    padding: 40px 5%;
  }
  .s-projects h2 {
    font-size: 24px;
  }
  .s-projects .project-card {
    padding: 15px;
  }
}

.s-services {
  padding: 60px 10%;
  text-align: center;
  background-color: #151515;
}
.s-services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .s-services h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .s-services h2 {
    font-size: 24px;
  }
}
.s-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .s-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .s-services .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.s-services .service-card {
  background-color: #111;
  border: 1px solid #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.s-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.s-services .service-card .icon {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .s-services .service-card .icon {
    font-size: 36px;
  }
}
.s-services .service-card h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .s-services .service-card h3 {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .s-services .service-card h3 {
    font-size: 14px;
  }
}
.s-services .service-card p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .s-services .service-card p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .s-services .service-card p {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .s-services .service-card {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .s-services {
    padding: 40px 5%;
  }
}

.s-contact {
  background: linear-gradient(to right, rgba(60, 4, 121, 0.8), rgba(132, 56, 215, 0.8)), url("../assets/image/svg/common-bg.svg");
  background-size: cover;
  background-position: center;
  padding: 60px 10%;
  color: #ffffff;
  text-align: center;
}
.s-contact .contact-container {
  max-width: 800px;
  margin: 0 auto;
}
.s-contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.s-contact p {
  font-size: 18px;
  margin-bottom: 40px;
}
.s-contact .contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  color: #151515;
  text-align: left;
}
@media (max-width: 768px) {
  .s-contact .contact-form {
    padding: 30px;
  }
}
.s-contact .form-group {
  position: relative;
  margin-bottom: 30px;
}
.s-contact .form-group input,
.s-contact .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  background: transparent;
  color: #151515;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.s-contact .form-group input:focus,
.s-contact .form-group textarea:focus {
  border-color: #5F07BF;
}
.s-contact .form-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 0 5px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}
.s-contact .form-group input:focus + label,
.s-contact .form-group input:not(:placeholder-shown) + label,
.s-contact .form-group textarea:focus + label,
.s-contact .form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  color: #5F07BF;
  font-size: 14px;
  background: #ffffff;
}
.s-contact .input-style {
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #555;
  outline: none;
  transition: border-color 0.3s ease;
}
.s-contact .input-style:focus {
  border-color: #5F07BF;
}
.s-contact .btn-submit {
  background: #5F07BF;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.s-contact .btn-submit:hover {
  background: #8438D7;
}

footer {
  background-color: #151515;
  color: #ffffff;
  padding: 25px 15%;
  text-align: center;
}
footer .grid-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  footer .grid-layout {
    flex-direction: column;
    text-align: center;
  }
}
footer p {
  margin: 0;
  font-size: 16px;
}
@media (max-width: 768px) {
  footer p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  footer p {
    font-size: 12px;
  }
}
footer a {
  color: #5F07BF;
  text-decoration: none;
  padding-right: 4px;
  transition: text-decoration 0.3s ease;
}
footer a:hover {
  text-decoration: underline;
}
footer .powered-by {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
footer .powered-by p {
  margin-right: 10px;
}
footer .powered-by img {
  width: 42px;
  height: auto;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
footer .powered-by img:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  footer .powered-by img {
    width: 36px;
  }
}
@media (max-width: 480px) {
  footer .powered-by img {
    width: 32px;
  }
}
@media (max-width: 768px) {
  footer .powered-by {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 5px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 20px 10%;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 15px 5%;
  }
}

body {
  font-family: "Poppins", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
