@font-face {
    font-family: 'OCR A Extended';
    src: url('../OCRAEXT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'OCR A Extended', sans-serif;
    scroll-behavior: smooth;
}


.navbar{
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo{
    background-color: #131313;
    display:flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    color: #DFFFD7;

    text-shadow: 0 0 10px rgba(160, 253, 135, 0.8); /* glowing effect */
}
.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar__item{
    height: 80px;
}

.navbar__links{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;

}
.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;

}
.contact-me a{
        padding: 10px 20px;
        font-size: 20px;
        background-color: #52c234;
        color: white;
        /*border: none;*/
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;

}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    /*padding: 10px 20px;*/
    height: 100%;
    width: 100%;
    border-radius: 4px;
    margin: 2rem;
    /*border: none;*/
    outline: none;
    background: #52c234; /* fallback for old browsers */

    background: -webkit-linear-gradient(to right, #52c234, #061700 , #fff); /* Chrome 10-25, Safari 5.1-6, Uigradient */
    background: linear-gradient(to right, #52c234, #061700 0% ,#52c234); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */  
    color: #fff;
    transition: all 0.3s ease;

}

.navbar__links:hover{
    color: #52c234;
    transition: all 0.3s ease;

}

@media screen and (max-width: 960px){
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
        /*background: #131313;*/
    }
    .navbar__menu.active{
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index:99;
        height:70vh;
        font-size: 1.6rem;
    }

    #navbar__logo{
        padding-left: 25px;

    }
    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }
    .navbar.item{
        width: 100%;
    }
    .navbar__links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }
    .navbar__btn{
        padding-bottom: 2rem;
        width: 100%;
        margin-bottom: 10px;
    }
    .button{
        padding: 10px 20px;
        font-size: 20px;
        background-color: #131313;
        color: white;
        /*border: none;*/
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-bottom: 4rem;
    }
    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }
    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }
    #mobile-menu.is-active .bar:nth-child(2)
    {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1)
    {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
}

/*Hero section*/

.hero{
    background: #131313;
    background: linear-gradient(to right, #131313, #121212);
    padding: 200px 0;

}
.hero__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 90%;
    text-align: center;
    padding: 30px;
}
.hero__heading{
    font-size: 100px;
    margin-bottom: 24px;
    color: #52c234;
}
.hero__heading span {
    color: #DFFFD7;

    text-shadow: 0 0 30px rgba(0, 255, 0, 0.8); /* glowing effect */
}
.hero__description{
    font-size: 60px;
   background: #52c234; /* fallback for old browsers */
 
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); 
    margin-top: 18rem;
}
.highlight{
    border-bottom: 4px solid rgb(255,140,0);
}
@media screen and (max-width: 768px)
{
    .hero__heading{
        font-size: 60px;
    }
    .hero__description{
        font-size: 40px;
    }   
}


/*About Section */

.main {
    background-color: #131313;
    padding: 10rem 0;
}

.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;


}

.main__content_1{
    color: #fff;
    width:100%;
    text-align: center;
}

.main__content_1 h1{
    font-size:2rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #52c234 100%, #061700 0%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); /* glowing effect */

}

.main__content_1 h2{
    font-size: 3rem;
    /*background: #fff;  /* fallback for old browsers */

color: #f0f0f0;
    background-size: 100%;

    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8); /* glowing effect */

}

.main__content_1 p {
    margin-top: 4rem;
    margin-left: 2rem;

}

.main__content_2{
    color:#f0f0f0;
    width: 100%;
    text-align: center;
}
.main__content_2 h1{
    margin-top:6rem;
    font-size:3rem;
    background-color: #f0f0f0;
    background-image: linear-gradient(to top, #52c234 100%, #061700 0%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); /* glowing effect */

}
.main__content_2 h2{
    font-size: 2rem;
    /*background: #fff;  /* fallback for old browsers */ 
color: #f0f0f0;
    background-size: 100%;
    
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); /* glowing effect */


}

.main__content_2 p {
    margin-top: 4rem;
    margin-bottom:4rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.your-room-class {
    width: 80vw; /* Adjust width for responsiveness */
    max-width: 600px; /* Limits the maximum size */
    height: 80vh; /* Adjust height for responsiveness */
    max-height: 600px; /* Limits the maximum height */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3); /* Optional shadow for a 3D effect */
    background-color: #1a1a1a; /* Background color if model does not fully fill */
}
/*.main__btn {

    position: relative;
    display: inline-block; 
    padding: 15px 40px; 
    color: white; 
    background-color: #28a745; 
    border-radius: 5px; 
    font-size: 30px; 
    text-decoration: none; 
    overflow: hidden; 
    transition: transform 0.3s ease; 
}

.main__btn a {
    color: inherit;    
    text-decoration: none;}

.main__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}*/

.main__btn {
    margin-top: 50px;
    position: relative;
    display: inline-block; 
    padding: 15px 40px; 
    color: white; 
    background-color: #52c234;
   /* border: none; */
    border-radius: 5px; 
    font-size: 30px; 
    text-decoration: none; 
    overflow: hidden; 
    transition: transform 0.3s ease;
}

.main__btn a {
    color: inherit; 
    text-decoration: none; 
}

.main__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; 
    height: 100%; 
    border-radius: 5px;
    background: rgba(0, 255, 0, 0.5); 
    filter: blur(15px); 
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.3s ease; 
    z-index: -1; 
}

.main__btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.main__btn:hover {
    transform: scale(1.05); 
}




.main__img--container{
    text-align: center;
}

.main__img--card{
    margin: 10px;
    height: 500px;
    width: 500px;
    border-radius:4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-image: linear-gradient(to right, #52c234, #141517 100%);
}

@media screen and (max-width: 1300px){
    .main__container{
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        height: 90%;
    }
    .main__img--container{
        display: flex;
        justify-content: center;
    }
    .main__img--card{
       
 
        height: 300px;
        width: 300px;
    }
    .your-room-class{
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        height: 300px;
        width: 300px;
    }
    .main__content{
        text-align: center;
        margin-bottom: 4rem;       
    }
    .main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    .main__content h2{
        font-size: 3rem;
    }

    .main_content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

}

@media screen and (max-width: 480px)
{
    .main__img--card{
        width: 250px;
        height: 250px;
    }
    .main__content h1{
        font-size: 2rem;
        margin-top: 3rem;
    }
    .main__content h2{
        font-size: 3rem;
    }
    .main__img--card{
       
 
        height: 100px;
        width: 100px;
    }
    .your-room-class{
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        height: 100px;
        width: 100px;
    }
    .main_content p {
        margin-top: 2rem;
    }
    .main__btn{
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/*About me section*/
.aboutme {
    background-color: #121212; 
    color: #f0f0f0; 
    padding: 50px 20px; 
    text-align: center; 
    position: relative; 
    overflow: hidden;
}

.aboutme__container {
    max-width: 1200px; 
    margin: auto; 
    border-radius: 15px; 
    padding: 30px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); 
    position: relative; 
    z-index: 1; 
}

.aboutme__img--container {
    position: relative; 
    margin-bottom: 30px; 
}

.aboutme__img--card {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #28a745, #6dbd45, #a1d99b, #b5e6a6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.aboutme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none; 
    clip-path: circle(100% at 50% 50%); 
    transition: clip-path 0.1s ease; 
}

.hidden-drawing {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
}



.aboutme h1 {
    font-size: 2.5rem; 
    margin: 20px 0; 
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); /* glowing effect */
    text-align: center;
}

.aboutme h2 {
    font-size: 1.5rem; 
    margin-bottom: 10px; 
    color: #a1d99b; 
}

.aboutme p {
    line-height: 1.6; 
    margin: 10px 0; 
    position: relative; 
}

.aboutme p:before {
    content: ''; 
    position: absolute; 
    width: 100%; 
    height: 5px; 
    background: linear-gradient(90deg, #28a745, #6dbd45); /* gradient */
    left: 0; 
    top: 0;    
    transform: scaleX(0);     
    transition: transform 0.5s; 
}

.aboutme p:hover:before {
    transform: scaleX(1); 
}


/*service selection*/

.services{
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10rem 0;
}

.services h1{
    text-align: center;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #52c234 0%, #fff 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); /* glowing effect */



}
.services h2{
    margin-left: 10px;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); /* glowing effect */


}
.services h3{
    margin-left:10px;
    margin-top: 4rem;
}
.services__wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 100px;
}

.services__card{
    margin: 10px;
    height: 550px;
    width: 450px;
    border-radius: 4px;
    /*display: flex;*/
    flex-direction: column;
    justify-content:center;
    color: #fff ;
    background-image:linear-gradient(to right, #52c234, #141517 100%);
    transition: 0.3s ease-in;
}
button {
    margin-top:10px;
    margin-left: 10px;
    position: relative;
    display: inline-block; 
    padding: 5px 10px;
    color: white; 
    background-color:#141517; 
   
    border-radius: 5px; 
    font-size: 12px; 
    text-decoration: none; 
    overflow: hidden; 
    transition: transform 0.3s ease; 
}


button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

button:hover {
    transform: scale(1.05);
}


.services__card p{
    margin-left:10px;
    margin-top: top 24px;
    font-size: 1rem;

}


.services__card button:hover {
  cursor: pointer;
}

.services__card:hover {
  transform: scale(1.075);
  transition: 0.3s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 1300px) {
  .services__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .services h1{
        text-align: center;
        margin-bottom: 4rem; 
  }
}

@media screen and (max-width: 768px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px){
 
        .services__wrapper {
        grid-template-columns: 1fr;
      }
      .services h1{
            text-align: center;
            margin-bottom: 2rem; 
      }
      .services__card{
        margin: 10px;
        height: 700px;
        width: 250px;
        border-radius: 2px;
        /*display: flex;*/
        flex-direction: column;
        justify-content:center;
        color: #fff ;
        background-image:linear-gradient(to right, #52c234, #141517 100%);
        transition: 0.3s ease-in;
    }

}
/* portfolio section*/
.portfolio-section {
    background: #131313;
    padding: 5rem 0; /* Reduced padding for better mobile display */
    text-align: center;
}

.portfolio-section h1 {
    background-color: #52c234;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.portfolio-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem; /* Adjusted gap for better mobile spacing */
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
}

.portfolio-box {
    background-color: #1c1c1c;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px; /* Adjusted max width */
    width: 100%; /* Full width on smaller screens */
    margin: 1rem auto;
    text-align: center;
    transition: transform 0.3s ease;
}

.portfolio-box h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.portfolio-btn {
    background-color: #52c234;
    background-image: linear-gradient(to right, #52c234, #061700);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Keeps the button inline on smaller screens */
}

.portfolio-btn:hover {
    background-color: #3e8c1f;
}

.portfolio-box:hover {
    transform: scale(1.05);
}

.portfolio-content {
    text-align: center;
    padding: 50px;
}

.portfolio-content h1 {
    font-size: 2.5rem;
    color: #333;
}

.portfolio-content p {
    font-size: 1.2rem;
    color: #555;
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 768px) {
    .portfolio-section {
        padding: 2rem 0;
    }
    .portfolio-box {
        max-width: 90%; /* Wider on mobile */
        margin: 1rem auto;
    }
    .portfolio-section h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-section h1 {
        font-size: 1.8rem;
    }
    .portfolio-box {
        width: 90%;
        margin: 1rem auto;
        padding: 1.5rem;
    }
    .portfolio-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
    }
    .portfolio-box h2 {
        font-size: 1.5rem;
    }
    .portfolio-btn {
        padding: 8px 16px; /* Smaller button padding */
        font-size: 1rem;
    }
}


/*footer section*/
.footer__container {
  background-color: #131313;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer__logo {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}
#footer__logo__CV{
    color: #fff;
  display: flex;
  /*align-items: center;*/
  cursor: pointer;
  text-decoration: none;
  font-size: 1.5rem;

}
.footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer__link--wrapper {
  display: flex;
}

.footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer__link--items h2 {
  margin-bottom: 16px;
  margin-left: 2px;
  color: #fff;
}

.footer__link--items a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: 0.3 ease-out;
}

.footer__link--items a:hover {
  color: #e9e9e9;
  transition: 0.3 ease-out;
}

.social__icon--link {
  color: #fff;
  font-size: 24px;
}

.social__media {
  max-width: 1000px;
  width: 100%;
}

.social__media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.website__rights {
  color: #fff;
}
@media screen and (max-width: 820px) {
  .footer__links {
    padding-top: 2rem;
  }

  #footer__logo {
    margin-bottom: 2rem;
  }

  .website__rights {
    margin-bottom: 2rem;
  }

  .footer__link--wrapper {
    flex-direction: column;
  }

  .social__media--wrap {
    flex-direction: column;
  }
}
/* popup style*/
#popup-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-size: 2rem;
}

#popup-form-container form {
    background-color: #061700;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    margin: 30px auto;
}

/*contact form*/
.form-input {
    width: 100%; 
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    box-sizing: border-box;
}



#contact-form-email{
    width : 460px;
}

#contact-form-message {
    height: 150px; 
}

@media screen and (min-width: 781px) {
    .form-input {
        max-width: 460px; /* Sets a maximum width on larger screens */
    }
  
}

@media screen and (max-width: 480px) {
    .form-input {
        max-width: 305px; /* Reduces maximum width on smaller screens */
    }
}
.form-row {
    display: flex;
    flex-direction: column; 
    margin-bottom: 15px;
}

.form-row label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #fff;
}

button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #52c234;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #3a9921;
}
.close-button {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    border-radius: 5px;
}
#show-popup{
        padding: 10px 20px;
        font-size: 20px;
        background-color: #52c234;
        color: white;
        /*border: none;*/
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;

}
/*canvas ?? i don't remenber maybe it's for the cursor*/
.canvas {
   position: absolute;
    width: 40px; 
    height: 40px;
    border-radius: 50%;
   /* background-color: rgba(255, 255, 255, 0); /* Light green color */
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 255, 0, 10); /* glowing effect */
    transition: transform 0.1s ease, background-color 0.3s ease; 
    /*z-index: 1000 ; */
     transform: translate(-50%, -50%);
}

a:hover ~ .canvas, button:hover ~ .canvas {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 255, 0, 0.8);
    box-shadow: 0 0 25px rgba(0, 255, 0, 1);
}

/* popup container again ? */
.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* popup content, i don't remenber what i did anymore */
.popup-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  text-align: center;
  border-radius: 10px;
}

.close-popup-btn, .submit-btn {
  background-color: #444;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.close-popup-btn:hover, .submit-btn:hover {
  background-color: #333;
}

/* input email */
input[type=email] {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.em-em {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.particle {
    display: inline-block;
    position: relative;
    transition: all 0.8s ease;
}

/*not working should be deleted*/
.particle.active {
    transform: translate(
        calc(-50px + 100px * var(--randomX)), 
        calc(-50px + 100px * var(--randomY))
    ) rotate(calc(-360deg * var(--randomRotate)));
    opacity: 0;
}

.particle.reassemble {
    transform: translate(0, 0) rotate(0);
    opacity: 1;
}

#entryGame {
 background-color: #52c234;
    background-image: linear-gradient(to right, #52c234, #061700);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
    font-size: 30px;
            
}


.last-part{
   background-color: #121212; 
    color: #f0f0f0; 
    padding: 50px 20px; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}
#lastpart-page h2{
    margin-top 30px;
    color: white;
    font-size: 16px;
}
    

