.galeriaFotos2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    font-family: 'Nunito';
    color: #363040;
}

.galeriaFotos2 img:first-child {
    width: clamp(20rem, 36vw, 36rem);
}

.galeriaFotos2 #texto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.5rem;
    margin-top: 2rem;
    width: 50%
}

.galeriaFotos2 #texto div:first-child {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.galeriaFotos2 #texto h1 {
    font-weight: 900;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.galeriaFotos2 #texto p {
    font-weight: 500;
    font-size: clamp(1.2rem, 1.7vw, 1.3rem);
}

#comoParticipar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.galeriaFotos2 h3 {
    font-weight: 700;
    text-decoration: underline;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

#comoParticipar ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    gap: 2.5rem;
}

#comoParticipar ul::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    bottom: 0;
    width: 1px;
    background-color: black;
    z-index: 0;
}

#comoParticipar ul li {
    font-weight: 600;
    font-size: clamp(1rem, 1.3vw, 1.4rem);
    position: relative;
    padding-left: 2rem;
    z-index: 1;
    margin-right: 1rem;
}

#comoParticipar ul li::before {
    content: '';
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    width: clamp(0.875rem, 1.25vw, 1.25rem);
    width: 1.25rem;
    height: 1.25rem;
    left: 6px;
    left: 6px;
    background: #F0BC23;
}

#enviarFoto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: #29252f;
    border-radius: 0.6rem;
    position: relative;
    left: 1.8rem;
    border: none;
    padding: 0.5rem;
}

#enviarFoto:hover{
    background-color: #363040;
    transform: scale(1.05);
    transition: 0.5s ease-in-out;
cursor: pointer;
}

#enviarFoto img {
    width: clamp(1.5rem, 2vw, 2rem);
}

#enviarFoto p {
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #FFFFFF;
    font-family: 'Nunito';
}

@media (max-width: 820px) {
    .galeriaFotos2 {
        flex-direction: column;
        align-items: center;
        gap: 0rem;
    }

    .galeriaFotos2 {
        width: 95%;
        margin: 0 auto;
    }

    .galeriaFotos2 #texto div:first-child {
        align-items: center;
    }

    #enviarFoto {
        left: 0rem;

        margin: 0 auto;
    }

    .galeriaFotos2 #texto {
        width: 95%;
    }
}

@media (max-width: 320px) {
    .galeriaFotos2 img:first-child {
        width: clamp(15rem, 30vw, 30rem);
    }
}