* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Prompt';
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --background-color: #000717;
    --background-second-color: hsl(222, 100%, 5%, 95%);
    --orange: #CE3E00;
    --purple: #890052;
    --blue: #000289;
    --text-color: white;
    --text-secondary-color: hsl(0, 0%, 100%, 70%);
}   

/* Hero section */

.hero {
    background: var(--background-color);
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8dvh;
}

@media (min-width: 720px) {
    .hero {
        padding-top: 3dvh; 
    }
}

/*  SVG Shapes */
.hero svg{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(-1); 
    width: 85%;
    height: 85%;
    z-index: 1;
}

/* SVG S con gradiente - base */
.letter-s {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    z-index: 1;
    animation: svgPulse 0.3s ease-in-out;
}

/* SVG móvil */
.letter-s-mobile {
    width: 300vw;
    height: 300vw;
    filter: blur(60px);
    opacity: 1;
    animation: svgPulse 0.3s ease-in-out;
}

/* SVG escritorio */
.letter-s-desktop {
    width: 300vw;
    height: 300vw;
    display: none;
}

@media (min-width: 720px) {
    .letter-s-mobile {
        display: none;
    }
    
    .letter-s-desktop {
        display: block;
        width: clamp(700px, 60dvw, 950px) !important; 
        height: auto !important;
        filter: blur(45px) !important;
        transform: translate(-50%, -50%) !important;
        top: 50% !important;
        left: 50% !important;
        animation: svgPulse 0.3s ease-in-out !important;
        opacity: 0.5;
    }
}


.letter-s #gradient-mobile stop:nth-child(1),
.letter-s #gradient-desktop stop:nth-child(1) {
    animation: colorShift1 20s infinite alternate;
}
.letter-s #gradient-mobile stop:nth-child(2),
.letter-s #gradient-desktop stop:nth-child(2) {
    animation: colorShift2 20s infinite alternate;
}
.letter-s #gradient-mobile stop:nth-child(3),
.letter-s #gradient-desktop stop:nth-child(3) {
    animation: colorShift3 20s infinite alternate;
}



/* color points */

.color-points {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
}

.point{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: var(--orange);
    position: absolute;
    filter: blur(7px);
    opacity: 0;
}

.point:nth-child(1){
    background: var(--purple);
    top: 4%;
    left: 40%;
    animation: pointAppear1 1.5s ease-out 0.5s forwards, movePointRandom1 6s ease-in-out 2s infinite;
}

.point:nth-child(2){
    background: var(--orange);
    top: 37%;
    left: 87%;
    animation: pointAppear2 1.5s ease-out 0.8s forwards, movePointRandom2 8s ease-in-out 2.3s infinite;
}

.point:nth-child(3){
    background: var(--orange);
    top: 55%;
    left: 40%;
    animation: pointAppear3 1.5s ease-out 1.1s forwards, movePointRandom3 7.5s ease-in-out 2.6s infinite;
}

.point:nth-child(4){
    background: var(--blue);
    top: 70%;
    left: 10%;
    animation: pointAppear4 1.5s ease-out 1.4s forwards, movePointRandom4 9s ease-in-out 2.9s infinite;
}

.point:nth-child(5){
    background: var(--purple);
    top: 85%;
    left: 80%;
    animation: pointAppear5 1.5s ease-out 1.7s forwards, movePointRandom5 6.5s ease-in-out 3.2s infinite;
}

/* header */

header{
    width: 100%;
    position: relative;
    z-index: 10; /* Por encima de la letra S */
}

header a{
    display: block;
    width: fit-content; 
    margin-left: auto; 
    margin-right: 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: clamp(1rem, 2dvw, 1.1rem); 
    padding: 5px 15px;
    border-radius: 5px;
    opacity: 0;
    background: linear-gradient(var(--background-color), var(--background-color)) padding-box,linear-gradient(45deg, var(--purple), var(--orange), var(--blue)) border-box;
    border: 1px solid transparent;
    margin-bottom: 5dvh;
    transition: all 0.3s ease;
    animation: infoTime 0.5s ease-in-out 2.5s forwards;
}

header a:hover{
    background: linear-gradient(45deg, var(--orange), var(--blue), var(--purple));
    transition: all 0.3s ease;
}

header img{
    width: 35vw; 
    height: auto;
    min-width: 280px;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    opacity: 0;
    animation: infoTime 0.5s ease-in-out 0.8s forwards;
}

@media (min-width: 720px) {
    header img {
    width: 30vw; 
    height: auto;
    min-width: 200px;
    max-width: 300px;
    }
}



/* Hero info */
.hero h1{
    color: var(--text-color);
    font-size: clamp(1.8rem, 3dvw, 2.2rem); 
    text-align: center;
    font-weight: normal;
    margin-top: 60px;
    position: relative;
    z-index: 10;
    opacity: 0;
    background: linear-gradient(to bottom, var(--purple), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: infoTime 0.5s ease-in-out 0.2s forwards;
}
.white-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    color: var(--text-color) !important;
}


@media (min-width: 720px) {
    .hero h1 {
        font-size: clamp(2.1rem, 4dvw, 2.6rem);
        margin-top: 8dvh; 
    }
}




.hero-button {
    display: block;
    width: fit-content; 
    margin: 30px auto 0 auto; 
    padding: 5px 15px;
    font-size: clamp(1rem, 2.5dvw, 1.1rem); 
    font-weight: bold;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--purple), var(--orange), var(--blue));
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 15;
    opacity: 0;
    transition: all 0.3s ease;
    animation: infoTime 0.5s ease-in-out 2s forwards;
}

.hero-button:hover {
    background: linear-gradient(45deg, var(--orange), var(--blue), var(--purple));
    transform: translateY(-2px);
}


.hero-last-info {
    font-size: clamp(0.8rem, 2dvw, 0.9rem); 
    text-align: center;
    margin-top: 10px;
    position: relative;
    z-index: 10;
    opacity: 0;
    background: linear-gradient(to right,white 50%, var(--orange) 75%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: infoTime 0.5s ease-in-out 1.5s forwards;
}

@media (min-width: 720px) {
    .hero-last-info {
        font-size: clamp(0.9rem, 1.5dvw, 1.1rem);
        margin-top: 2dvh;
    }
}


/* Main section */ 
.main-section {
    background: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    padding-bottom: 25px;
}

/* main info */
.tittle-main-section {
    color: var(--text-color);
    font-size: clamp(1.8rem, 4dvw, 2.2rem); 
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.info-main-section{
    width: 100%;
    color: var(--text-secondary-color);
    font-size: clamp(0.9rem, 3dvw, 1.1rem); 
    text-align: center;
    max-width: 710px;
    margin-bottom: 30px;
}

.services-last-info {
    font-size: clamp(0.8rem, 2dvw, 0.9rem); 
    text-align: center;
    background: linear-gradient(to right,white 50%, var(--orange) 75%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
    z-index: 5;
}

@media (min-width: 720px) {
    .tittle-main-section {
        color: var(--text-color);
        font-size: clamp(1.8rem, 3dvw, 2rem); 
        margin-bottom: 20px;
        text-align: center;
        font-weight: bold;
        letter-spacing: 0.5px;
    }

    .info-main-section{
        width: 45%;
        min-width: 500px;
        color: var(--text-secondary-color);
        font-size: clamp(0.9rem, 2dvw, 1.1rem); 
        text-align: center;
        max-width: 800px;
        margin-bottom: 40px;
    }

    .services-last-info {
        font-size: clamp(0.9rem, 2dvw, 1.1rem); 
        text-align: center;
        background: linear-gradient(to right,white 50%, var(--orange) 75%, var(--purple) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        margin-top: 40px;
        margin-bottom: 20px;
        position: relative;
        z-index: 5;
}

}



/* services-cards */

.services-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.services-container ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.services-container li {
    transition: all 0.3s ease;
}

.services-container li:hover {
    transform: translateY(-5px);
}

.services-container li:hover .service-card {
    box-shadow: 0 0 60px hsl(0, 0%, 100%, 20%);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(var(--background-color), var(--background-color)) padding-box,linear-gradient(45deg, var(--purple), var(--orange), var(--blue)) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    padding-top: 30px;
    width: 300px;
    height: 230px;
    text-align: center;
    box-shadow: 0 0 40px hsl(0, 0%, 100%, 10%);
    transition: all 0.3s ease;
    z-index: 100;
}

.service-card:hover{
    box-shadow: 0 0 60px hsl(0, 0%, 100%, 20%);
}

.service-card h3 {
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.4;
}

.service-card span{
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.main-button {
    display: block;
    width: fit-content; 
    margin: 10px auto 0 auto; 
    padding: 5px 15px;
    font-size: clamp(0.9rem, 2.5dvw, 1.1rem); 
    color: var(--text-color);
    background: linear-gradient(45deg, var(--purple), var(--orange), var(--blue));
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 15;
    transition: all 0.3s ease;
}

.main-button:hover {
    background: linear-gradient(45deg, var(--orange), var(--blue), var(--purple));
    transform: translateY(-2px);
}

@media (min-width: 720px) {
    .services-container ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(80px, 6dvw, 120px);
    }
    .service-card {
        padding: 20px;
        padding-top: 20px;
        width: 250px;
        height: 250px;
        text-align: center;
        box-shadow: 0 0 40px hsl(0, 0%, 100%, 10%);
    }
    .service-card h3 {
        color: var(--orange);
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .service-card p {
        color: var(--text-color);
        font-size: 1rem;
        line-height: 1.4;
    }

    .service-card span{
        font-size: 2.8rem;
        color: var(--text-color);
        margin-bottom: 15px;
    }

}

/* points-main-section */

.color-points-main {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.point-main{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: var(--orange);
    position: absolute;
    filter: blur(7px);
}

.point-main:nth-child(1){
    background: var(--purple);
    top: 2%;
    left: 5%;
    animation: movePointRandom1 6s ease-in-out infinite;
}

.point-main:nth-child(2){
    background: var(--orange);
    top: 17%;
    left: 88%;
    animation: movePointRandom2 8s ease-in-out infinite;
}

.point-main:nth-child(3){
    background: var(--orange);
    top: 35%;
    left: 32%;
    animation: movePointRandom3 7.5s ease-in-out infinite;
}

.point-main:nth-child(4){
    background: var(--blue);
    top: 70%;
    left: 10%;
    animation: movePointRandom4 9s ease-in-out infinite;
}

.point-main:nth-child(5){
    background: var(--purple);
    top: 85%;
    left: 80%;
    animation: movePointRandom5 6.5s ease-in-out infinite;
}

@media (min-width: 720px) {
    .point-main:nth-child(1){
        top: 4%;
        left: 85%;
    }
    .point-main:nth-child(2){
        top: 17%;
        left: 8%;
    }
    .point-main:nth-child(3){
        top: 35%;
        left: 50%;
    }
    .point-main:nth-child(4){
        top: 78%;
        left: 10%;
    }
    .point-main:nth-child(5){
        top: 85%;
        left: 80%;
    }
}

/* Experience section */

.experience-section {
    background: var(--background-second-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height:auto;
    position: relative;
    z-index: 5;
    padding: 40px 20px 25px 20px;
}

.experience-section h2{
    color: var(--text-color);
    font-size: clamp(1.8rem, 4dvw, 2.2rem); 
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 0.5px;
}

.experience-container{
    display: flex;
    align-items: center; 
    justify-content: space-evenly;
    width: 100%;
    min-height: 500px; 
    position: relative;
    z-index: 5;
}

.experience-container ul {
    width: 70%;
    list-style: none;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 520px; 
    gap: 50px;
}

.experience-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    text-align: center;
}

.experience-item h3{
    color: var(--text-secondary-color);
    font-size: clamp(1rem, 2.5dvw, 1.2rem);
    letter-spacing: 0.5px;
}

.experience-item img{
    width: 100%;
    max-width: 800px;
    height: auto; 
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.experience-item p{
    color: var(--text-color);
    font-size: clamp(0.9rem, 2dvw, 1.1rem);
    line-height: 1.4;
    width: 100%;
    margin: 0 auto;
    height: 80px;
}


/* Transiciones para el diccionario de experiencias */
.experience-item {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 610px;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
}

.experience-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.experience-item.entering {
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
}

.experience-item.exiting {
    opacity: 0;
    transform: translateX(-50px);
    pointer-events: none;
}

.nav-button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button span{
    font-size: clamp(3rem, 4.5dvw, 6rem);
    color: white;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button span:hover {
    color: var(--orange);
    transform: scale(1.1);
}

@media (min-width: 720px) {
    .experience-container ul {
        min-height: 650px;
    }
    
    .experience-container {
        width: 80%;
        min-width: 800px;
        min-height: clamp(400px, 50dvh, 700px); 
    }
}
/* technology */

.experience-section h3{
    color: var(--text-color);
    font-size: clamp(1.4rem, 3.5dvw, 1.8rem);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.technology-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    gap: 10px;

}

.technology-container img{
    width: 60px;
    height: auto;
    margin: 10px;
    border: 1px solid var(--text-secondary-color);
    border-radius: 5px;
    padding: 10px;
    background: var(--background-color);
    transition: all 0.3s ease;
}

.technology-container img:hover{
    background: linear-gradient(var(--background-color), var(--background-color)) padding-box,
               linear-gradient(45deg, var(--purple), var(--orange), var(--blue)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 0 15px var(--orange);
    transform: translateY(-2px);
    cursor: pointer;
}

@media (min-width: 720px) {

    .technology-container {
        gap: 15px;
    }
    .technology-container img{
        width: 52px;
        cursor: pointer;
    }
}

/* footer section */

.footer-section{
    background: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;

}

.footer-section img{
    width: 60vw; 
    height: auto;
    min-width: 150px;
    max-width: 350px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.footer-section h2 {
    background: linear-gradient(to right, var(--purple) 30%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: clamp(1.4rem, 5.5dvw, 1.8rem);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight:600
}

.footer-section p, .footer-section a {
    color: var(--text-color);
    font-size: clamp(0.9rem, 3.5dvw, 1.1rem);
    line-height: 1.4;
    margin: 0;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--orange);
    transform: scale(1.1);
    transition: all 0.3s ease;

}

.nav-bar-footer nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-info-footer{
    display: flex;   
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-links a {
    font-size: clamp(1.5rem, 9dvw, 2rem);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background: transparent;
}

.social-links a:hover {
    color: var(--orange);
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

.social-links .material-icons {
    font-size: clamp(1.5rem, 6dvw, 2rem);
    transition: all 0.3s ease;
}

.social-links a:hover .material-icons {
    transform: scale(1.1);
}

.footer-credits{
    color: var(--text-secondary-color);
    font-size: clamp(0.8rem, 2.5dvw, 1rem);
    margin-bottom: 20px;
}

@media (min-width: 1050px) {
    .footer-container{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: flex-start;
        width: 100%;
    }
    .footer-section {
        gap: 30px;
        justify-content: center;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .footer-section h2 {
        font-size: 1.5rem;
    }
    
    .footer-section p, .footer-section a {
        font-size: 0.95rem;
    }
    
    .social-links a {
        font-size: 1.6rem;
    }

    .footer-credits{
        padding-left: 20px;
    }
}



















/* Animations by jose  */
@keyframes movePointRandom1 {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(5px) translateX(-20px); }
    75% { transform: translateY(-10px) translateX(15px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes movePointRandom2 {
    0% { transform: translateY(0) translateX(0); }
    30% { transform: translateY(12px) translateX(-18px); }
    60% { transform: translateY(-8px) translateX(25px); }
    90% { transform: translateY(18px) translateX(-5px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes movePointRandom3 {
    0% { transform: translateY(0) translateX(0); }
    20% { transform: translateY(-22px) translateX(-12px); }
    45% { transform: translateY(15px) translateX(8px); }
    70% { transform: translateY(-5px) translateX(-25px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes movePointRandom4 {
    0% { transform: translateY(0) translateX(0); }
    35% { transform: translateY(20px) translateX(15px); }
    65% { transform: translateY(-12px) translateX(-10px); }
    85% { transform: translateY(8px) translateX(22px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes movePointRandom5 {
    0% { transform: translateY(0) translateX(0); }
    40% { transform: translateY(-18px) translateX(20px); }
    70% { transform: translateY(25px) translateX(-15px); }
    90% { transform: translateY(-8px) translateX(12px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes sgradiant{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes info{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes infoTime{
    0%{
        opacity: 0;
        transform: translateY(15px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes colorShift1 {
    0% { stop-color: var(--purple); }
    33% { stop-color: var(--blue); }
    66% { stop-color: var(--orange); }
    100% { stop-color: var(--purple); }
}

@keyframes colorShift2 {
    0% { stop-color: var(--blue); }
    33% { stop-color: var(--orange); }
    66% { stop-color: var(--purple); }
    100% { stop-color: var(--blue); }
}

@keyframes colorShift3 {
    0% { stop-color: var(--orange); }
    33% { stop-color: var(--purple); }
    66% { stop-color: var(--blue); }
    100% { stop-color: var(--orange); }
}

/* Animación de aparición/desaparición para el SVG */
@keyframes svgPulse {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 0.4; }
}

/* Animaciones de aparición de puntos desde el centro absoluto */
@keyframes pointAppear1 {
    0% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        top: 4%; 
        left: 40%;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pointAppear2 {
    0% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        top: 37%; 
        left: 87%;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pointAppear3 {
    0% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        top: 55%; 
        left: 40%;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pointAppear4 {
    0% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        top: 70%; 
        left: 10%;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pointAppear5 {
    0% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        top: 50%; 
        left: 50%;
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        top: 85%; 
        left: 80%;
        opacity: 1;
        transform: scale(1);
    }
}