* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
  }
  
  ::-webkit-scrollbar {
    width: 5px;
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #EDEDED;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: #2A2A2A;
    color: #EDEDED;
  }

  a{
    color: #6BBF7D;
    text-decoration: none;
  }

  a:hover{
    text-decoration: underline !important;
  }
  
  .container {
    padding: 1rem 6rem;
  }
  
  .title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
  }
  
  header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    width: 100%;
    height: 10vh;
    z-index: 9999;
    background-color: #1C1C1C;
  }
  
  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  header .logo img {
    height: 100%;
    width: 75px;
  }
  
  header .logo a {
    color: #EDEDED;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
  }
  
  header nav {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  header nav a {
    color: #EDEDED;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: 0.3s linear;
  }

  
  header .extra-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  header .extra-nav button {
    cursor: pointer;
    background: transparent;
    border: 2px solid #EDEDED;
    border-radius: 8px;
    color: #EDEDED;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 12px;
    transition: 0.3s linear;
  }
  
  header .extra-nav button:hover {
    background: #EDEDED;
    border-color: #EDEDED;
    color: #2A2A2A;
    transition: 0.3s linear;
  }
  
  header .hamburger-menu {
    cursor: pointer;
    display: none;
  }
  
  header .mobile-nav {
    display: none;
  }
  
  .hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero .container .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .hero .container .content svg {
    margin-bottom: -9rem;
  }
  
  .hero .container .content svg text {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 132px;
    animation: stroke 5s infinite alternate;
  }
  
  .hero .container .content h1 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 48px;
    width: 65%;
  }
  
  .hero .container .content h1 span{
    background: #6BBF7D;
    color: #2A2A2A;
    font-weight: bold;
    padding:0px 4px;
    border-radius: 8px;
  }
  
  .hero .container .content button {
    cursor: pointer;
    padding: 0.1em 0.25em;
    width: 13em;
    height: 4.2em;
    color: #EDEDED;
    background-color: #2A2A2A;
    border: 0.08em solid #EDEDED;
    border-radius: 0.3em;
    font-size: 12px;
    margin-top: 20px;
  }
  
  .hero .container .content button span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0.4em;
    width: 8.25em;
    height: 2.5em;
    background-color: #2A2A2A;
    border-radius: 0.2em;
    font-size: 1.5em;
    border: 0.08em solid #EDEDED;
    box-shadow: 0 0.4em 0.1em 0.019em #EDEDED;
  }
  
  .hero .container .content button span:active {
    transition: all 0.5s;
    transform: translate(0, 0.4em);
    box-shadow: 0 0 0 0 #EDEDED;
  }
  
  .hero .container .content button span:not(active) {
    transition: all 1d;
  }
  
  .about {
    min-height: 100vh;
    padding: 3rem 0;
  }
  
  .about .container .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  
  .about .container .content .about-me {
    display: flex;
    gap: 12px;
  }
  
  .about .container .content .about-me .profile {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about .container .content .about-me .profile .image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background-color: #191919;
    border-radius: 16px;
    width: 75%;
    height: 75vh;
  }
  
  .about .container .content .about-me .profile .image-box img {
    width: 70%;
  }
  
  .about .container .content .about-me .description {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .about .container .content .about-me .description .name-role {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .about .container .content .about-me .description .name-role h1 {
    font-weight: bold;
    font-size: 3rem;
  }
  
  .about .container .content .about-me .description .name-role .role {
    width: 100%;
    display: flex;
  }
  
  .about .container .content .about-me .description .name-role .role h2 {
    font-weight: 500;
    font-size: 2rem;
    padding: 0px 6px;
    background-color: #EDEDED;
    border-radius: 8px;
    color: #2A2A2A;
  }
  
  .about .container .content .about-me .description p {
    font-size: 1.2rem;
    text-align: justify;
  }
  
  .skill,
  .project,
  .contact {
    padding: 3rem 0;
    width: 100%;
  }
  
  .skill .container .content,
  .project .container .content,
  .contact .container .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    width: 100%;
  }
  
  .skill .container .content .skills {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 50%;
  }
  
  .skill .container .content .skills .skill-box {
    padding: 4px;
    border: 2px solid #EDEDED;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    filter: grayscale(100);
    transition: all 0.2s linear;
  }
  
  .skill .container .content .skills .skill-box:hover {
    filter: grayscale(0);
    transform: scale(1.02);
    transition: all 0.2s linear;
    cursor: pointer;
  }
  
  .skill .container .content .skills .skill-box img {
    width: 100%;
    height: 75%;
  }
  
  .project .container .content .projects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 85%;
  }
  
  .project .container .content .projects .card {
    padding: 16px;
    border: 2px solid #EDEDED;
    border-radius: 12px;
    height: 450px;
  }
  
  .project .container .content .projects .card img {
    width: 100%;
    height: 50%;
  }
  
  .project .container .content .projects .card .description {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 50%;
  }
  
  .project .container .content .projects .card .description h1 {
    font-weight: bold;
    font-size: 28px;
  }
  
  .project .container .content .projects .card .description p {
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
  }
  
  .project .container .content .projects .card .description .action {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
  }
  
  .project .container .content .projects .card .description .action button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border: 2px solid #EDEDED;
    border-radius: 12px;
    background: transparent;
    color: #EDEDED;
    width: 25%;
    transition: 0.3s linear;
  }
  
  .project .container .content .projects .card .description .action button:hover {
    background: #EDEDED;
    border-color: #EDEDED;
    color: #2A2A2A;
    transition: 0.3s linear;
  }
  
  .contact .container .content .contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    width: 50%;
    border: 4px solid #EDEDED;
    border-radius: 20px;
  }
  
  .contact .container .content .contact-form .input {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }
  
  .contact .container .content .contact-form .input input {
    width: 49%;
    padding: 12px;
    background: transparent;
    border: 3px solid #EDEDED;
    border-radius: 8px;
    color: #EDEDED;
  }
  .contact .container .content .contact-form .input input:last-of-type {
    width: 100%;
  }
  
  .contact .container .content .contact-form .input input:focus {
    outline: none;
  }
  
  .contact .container .content .contact-form textarea {
    resize: none;
    padding: 12px;
    height: 300px;
    background: transparent;
    border: 3px solid #EDEDED;
    border-radius: 8px;
    color: #EDEDED;
  }
  
  .contact .container .content .contact-form textarea:focus {
    outline: none;
  }
  
  footer {
    display: flex;
    align-items: center;
    width: 100%;
    border-top: 2px solid #EDEDED;
  }
  
  footer .container {
    padding: 4rem;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    gap: 4rem;
  }
  
  footer .container .profile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 25%;
  }
  
  footer .container .link-container {
    width: 70%;
    display: flex;
    gap: 4rem;
  }
  
  footer .container .link-container .information,
  footer .container .link-container .technology,
  footer .container .link-container .navigation {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 30%;
  }
  
  footer .container .profile .logo {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  footer .container .profile .logo img {
    width: 50px;
    height: 50px;
  }
  
  footer .container .profile .logo a {
    font-size: 24px;
    font-weight: bold;
    color: #EDEDED;
  }
  
  footer .container .profile p {
    font-weight: 400;
    margin-bottom: 8px;
  }
  
  footer .container .profile .social-media-container {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  footer .container .profile .social-media-container img {
    width: 35px;
    height: 35px;
  }

  
  footer .container .link-container .information h1,
  footer .container .link-container .technology h1,
  footer .container .link-container .navigation h1 {
    font-size: 24px;
    font-weight: bold;
    color: #EDEDED;
    height: 50px;
    display: flex;
    align-items: center;
  }
  
  footer .container .link-container .information ul,
  footer .container .link-container .technology ul,
  footer .container .link-container .navigation ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left:18px;
  }
  footer .container .link-container .information ul li,
  footer .container .link-container .technology ul li,
  footer .container .link-container .navigation ul li {
    cursor: pointer;
  }
  

  
  footer .container .link-container .information ul li a,
  footer .container .link-container .technology ul li a,
  footer .container .link-container .navigation ul li a {
    color: #EDEDED;
    text-decoration: none;
  }
  
  @keyframes stroke {
    0% {
      stroke: white;
      stroke-width: 0;
      stroke-dashoffset: 25%;
      stroke-dasharray: 0 50%;
    }
    70% {
      stroke: white;
    }
    80% {
      stroke: white;
      stroke-width: 3;
    }
    100% {
      stroke: white;
      stroke-width: 0;
      stroke-dashoffset: -25%;
      stroke-dasharray: 50% 0;
    }
  }

  .nope-container {
    width: 100%;
    height: 500px;
    background-color: #191919;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
  }

  /* A gomb stílusa */
  .nope-container  .button {
    padding: 10px 20px;
    font-size: 16px;
    color: #2A2A2A;
    background-color: #6BBF7D;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top:50%;
    left:50%;
    transition: top 0.3s ease, left 0.3s ease;
  }

  #fadeButton {
    transition: opacity 0.5s ease; /* Az animáció hossza */
}
.hidden {
    opacity: 0;
    transition: opacity 0.2s ease; 
}

  /* Responsive */
  
  @media screen and (max-width: 1536px) {
    footer .container {
      gap: 2rem;
    }
    footer .container .link-container {
      gap: 2rem;
    }
  }
  
  @media screen and (max-width: 1024px) {
    header nav,
    header .extra-nav {
      display: none;
    }
  
    header .hamburger-menu {
      display: block;
    }
  
    header .mobile-nav {
      position: absolute;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      top: 0;
      left: 0;
      right: 0;
      transform: translateY(-100%);
      height: 100vh;
      background-color: #2A2A2A;
      z-index: 999;
      transition: all 0.2s linear;
    }
  
    header .mobile-nav.show {
      transform: translateY(0);
      transition: all 0.2s linear;
    }
  
    header .mobile-nav .close {
      position: absolute;
      top: 24px;
      right: 16px;
      display: flex;
      justify-content: end;
      width: 100%;
    }
  
    header .mobile-nav .close svg {
      cursor: pointer;
      width: 35px;
      height: 35px;
    }
  
    header .mobile-nav ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      width: 100%;
    }
  
    header .mobile-nav ul li {
      cursor: pointer;
      position: relative;
      list-style: none;
      width: 25%;
    }
  
    header .mobile-nav ul li:last-of-type ,
    footer .container .link-container .navigation li:last-of-type{
      display: none;
    }
  
    header .mobile-nav ul li a {
      color: #EDEDED;
      text-decoration: none;
      font-weight: 500;
      font-size: 36px;
      transition: 0.3s linear;
    }
  
  
    header .mobile-nav ul li:hover .nav-link::after {
      width: 100%;
      transition: 0.3s linear;
    }

    .hero .container .content svg{
      margin-bottom: -4rem;
    }

    .about .container .content .about-me .profile{
      display: none;
    }
    .about .container .content .about-me .description,
    .skill .container .content .skills{
      width: 100%;
    }
  
    footer .container .link-container .information ul li::after,
    footer .container .link-container .technology ul li::after,
    footer .container .link-container .navigation ul li::after {
      width: 60%;
    }
  }
  
  @media screen and (max-width: 768px) {
    header .mobile-nav ul li {
      width: 35%;
    }

    .about .container .content{
      gap:1rem;
    }

    .skill, .project, .contact{
      padding:2rem 0;
    }

    .about{
      padding:0;
    }

    .container{
      padding: 1rem 2rem;
    }

   /* #project{
      display: none;
    }*/
  
    footer .container {
      padding: 1rem 2rem;
    }
    footer .container .profile {
      width: 50%;
    }
    footer .container .link-container {
      flex-direction: column;
      width: 100%;
    }
  
    footer .container .link-container .information ul li::after,
    footer .container .link-container .technology ul li::after,
    footer .container .link-container .navigation ul li::after {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 610px) {
    .skill .container .content .skills{
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    footer .container .profile,
    footer .container .link-container {
      width: 100%;
    }
  
    footer .container .link-container .information,
    footer .container .link-container .technology,
    footer .container .link-container .navigation {
      width: 30%;
    }
  }
  
  @media screen and (max-width: 450px) {
    header .mobile-nav ul li {
      width: 50%;
    }

    .hero .container .content svg text{
      font-size:230px;
    }

    .hero .container .content svg{
      margin-bottom: -2rem;
    }

    .hero .container .content h1{
      font-size: 1.5rem; 
    }

    .skill .container .content .skills{
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about .container .content .about-me .description{
      gap: 16px;
    }

    .about .container .content .about-me .description p{
      font-size: 1rem;
    }
  
    .title{
      font-size: 2rem !important;
    }

    h2{
      font-size: 1rem !important;
    }

    footer .container{
      gap:1rem;
    }

    footer .container .link-container .information,
    footer .container .link-container .technology {
      display: none;
    }
    footer .container .link-container .navigation {
      width: 50%;
    }
  }