@charset "UTF-8";
/* Aqui esta el css de toda la web unificado, para una mejor optimizacion. */

/* Contiene:
 -Reset
 -Variables con colores tipografias y tamaños
 -Seccion animaciones(cursor,efecto burbuja)
 -Header
 -Footer
/* Reset */

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}

/* Evitamos problemas con las imagenes */
img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  display: block;
}

/* Reseteamos los enlaces para funcionar como cajas... */
 a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}

/* Quitamos los puntos de los <li> */
li {
  list-style-type: none;
}

/* Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}

/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* Configuramos el texto que seleccionamos */
::-moz-selection {
  background-color: var(--negro);
  color: var(--blanco);
}
::selection {
  background-color: var(--negro);
  color: var(--blanco);
}

/* Nivelamos problemas de tipografías y colocación de formularios */
form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;

}
/* Reseteamos las tablas */
table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Evitamos problemas con los SVG */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* (Probándolo, no usar en producción) En el caso de añadir una  */
/* p svg{
  display: inline;
  width: initial;
} */
/* Configuramos la tipografía para toda la web */
body {
  min-height: 100vh;
  font-size: 100%;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--negro);
  background-color: var(--color-html);
  /* opcional */
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  /* opcional */
  
  /* opcional */
  -webkit-font-smoothing: antialiased;
  /* opcional */
  -moz-osx-font-smoothing: grayscale;
  cursor: move;
}
/* Variables */
:root{

  /* Colores */
  --color-negro:#000000;
  --color-rosa:#f511c8;
  --color-blanco:#ffff;
  --color-html: #010101;
  --color-html-fondo:#898989;
  --color-css-fondo:burlywood;
  --color-js:#3b83bd;
  

  /* Tipografias */
  --fuente-principal: 'Oswald'; 
  --fuente-secundaria: 'Source Sans 3';
  /* Tamaños Tipografias */
  --h1-:6rem;
  --h2-:4rem;
  --h3-:3rem;
  --h4-:2rem;
  --h5-:1.5rem;
  --p- :1.2rem;

}
/* Seccion animaciones */

/* Animacion cursor */
.Cursor{
    width:3rem;
    height: 3rem;
    background-color:var(--color-blanco);
    

    mix-blend-mode: difference;
    border-radius:50%;
    position: fixed;

    z-index:5;

    top:-1.5rem;
    left: -1.5rem;

    pointer-events: none;

}
/* Animacion burbuja */

.Burbuja{
  width: 0.3rem;
  height: 0.3rem;
  background-color: var(--color-blanco);
  border-radius: 50%;  
  opacity: 0.1; /* Cambia la opacidad según lo necesites */

  position: fixed;

  z-index:2;

  bottom: -20vh;
  left: 25%;

  animation: burbujas 5s linear infinite;
}

.Burbuja:nth-child(1){
  left: 12%;
  animation-duration: 4.8s;
}

.Burbuja:nth-child(2){
  left: 28%;
  animation-duration: 5.2s;
  animation-delay: 2.1s;
}

.Burbuja:nth-child(3){
  left: 17%;
  animation-duration: 3.6s;
}

.Burbuja:nth-child(4){
  left: 72%;
  animation-duration: 6.3s;
}

.Burbuja:nth-child(5){
  left: 38%;
  animation-duration: 2.9s;
}

.Burbuja:nth-child(6){
  left: 59%;
  animation-duration: 4.7s;
}

.Burbuja:nth-child(7){
  left: 46%;
  animation-duration: 7.1s;
  animation-delay: 3.4s;
}

.Burbuja:nth-child(8){
  left: 23%;
  animation-duration: 5.9s;
  animation-delay: 5.7s;
}

.Burbuja:nth-child(9){
  left: 84%;
  animation-duration: 4.3s;
}

.Burbuja:nth-child(10){
  left: 8%;
  animation-duration: 3.8s;
  animation-delay: 2.3s;
}

.Burbuja:nth-child(11){
  left: 63%;
  animation-duration: 6.2s;
  animation-delay: 1.5s;
}

.Burbuja:nth-child(12){
  left: 32%;
  animation-duration: 4.6s;
}

.Burbuja:nth-child(13){
  left: 79%;
  animation-duration: 3.2s;
  animation-delay: 2.7s;
}

.Burbuja:nth-child(14){
  left: 52%;
  animation-duration: 5.4s;
}

.Burbuja:nth-child(15){
  left: 19%;
  animation-duration: 2.5s;
}

.Burbuja:nth-child(16){
  left: 69%;
  animation-duration: 3.9s;
  animation-delay: 3.8s;
}

.Burbuja:nth-child(17){
  left: 41%;
  animation-duration: 5.8s;
}

.Burbuja:nth-child(18){
  left: 57%;
  animation-duration: 2.3s;
}

.Burbuja:nth-child(19){
  left: 75%;
  animation-duration: 6.6s;
  animation-delay: 1.9s;
}

.Burbuja:nth-child(20){
  left: 14%;
  animation-duration: 4.5s;
}

.Burbuja:nth-child(21){
  left: 30%;
  animation-duration: 7.3s;
  animation-delay: 4.2s;
}

.Burbuja:nth-child(22){
  left: 86%;
  animation-duration: 2.8s;
}

.Burbuja:nth-child(23){
  left: 66%;
  animation-duration: 5.1s;
}

.Burbuja:nth-child(24){
  left: 48%;
  animation-duration: 3.7s;
  animation-delay: 1.2s;
}

.Burbuja:nth-child(25){
  left: 24%;
  animation-duration: 6.4s;
}

.Burbuja:nth-child(26){
  left: 82%;
  animation-duration: 4.2s;
  animation-delay: 3.1s;
}

.Burbuja:nth-child(27){
  left: 39%;
  animation-duration: 5.7s;
}

.Burbuja:nth-child(28){
  left: 58%;
  animation-duration: 3.4s;
}

.Burbuja:nth-child(29){
  left: 18%;
  animation-duration: 6.1s;
  animation-delay: 2.9s;
}

.Burbuja:nth-child(30){
  left: 74%;
  animation-duration: 2.6s;
}

.Burbuja:nth-child(31){
  left: 32%;
  animation-duration: 7.2s;
  animation-delay: 5.3s;
}

.Burbuja:nth-child(32){
  left: 61%;
  animation-duration: 4.8s;
}

.Burbuja:nth-child(33){
  left: 43%;
  animation-duration: 3.5s;
}

.Burbuja:nth-child(34){
  left: 29%;
  animation-duration: 6.7s;
  animation-delay: 4.4s;
}

.Burbuja:nth-child(35){
  left: 78%;
  animation-duration: 3.3s;
}

.Burbuja:nth-child(36){
  left: 12%;
  animation-duration: 5.6s;
  animation-delay: 3.7s;
}

.Burbuja:nth-child(37){
  left: 58%;
  animation-duration: 2.4s;
}

.Burbuja:nth-child(38){
  left: 35%;
  animation-duration: 4.9s;
}

.Burbuja:nth-child(39){
  left: 81%;
  animation-duration: 3.1s;
  animation-delay: 2.6s;
}

.Burbuja:nth-child(40){
  left: 17%;
  animation-duration: 6.3s;
}

.Burbuja:nth-child(41){
  left: 47%;
  animation-duration: 4.2s;
  animation-delay: 1.8s;
}




  @keyframes burbujas{
    0%{
      bottom: 0vh;
      opacity:0;
    }
    30%{
      transform: translateX(2rem);
    }
    50%{
      opacity: .6;
    }
    100%{
      bottom: 100vh;
      opacity: 0;
    }
  }
  
/* Header */
.Header{
    width: 100%;
    background-color: transparent;

    padding: 3rem 1rem;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items:center;

    position: fixed;

    opacity: 1;

    z-index: 1;

    transition: opacity 1s ease;
    
}
.Header.isActive{
    width: 100%;
    
    background-color: transparent;

    display: flex;
    flex-flow: row nowrap;
    justify-content:flex-end;
    align-items:center;

    position: fixed;

    opacity: 0;

    z-index: 1;

}
/* Logo de la web con animacion */
.Header-img{
    width: 5rem;

    position: fixed;
    top: 2vh;
    left: 5%;

    z-index: 3;

    transition: transform 1s ease;
}
/* Animacion del logo de la web */
.Header-img:hover{
    
    transform: rotateY(360deg);
}
/* Menu nav  */
.Header-ul{
    width: 100%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

    margin: 0 3rem 0 0;
   

    gap: 5rem;
}
/* Items del menu nav con animacion */
.Header-li{

    font-weight: 700;
    font-family:var(--fuente-principal) ;
    color: var(--color-blanco);
    border: .3rem solid transparent;
    border-radius: .9375rem;

    transition: border 1s ease;
}
/* Animacion de los items */
.Header-li:hover{

    border: .3rem solid var(--color-rosa) ;
  }

.Header-a{
    width: 100%;
    font-family: var(--fuente-principal);
    font-weight:700;
    font-size: var(--p-);
    text-align: center;
   
    padding: .5rem 2rem;
    
    text-transform:uppercase;

}
/* Boton hamburguesa */
.Hamburguesa-button{
    width: 2rem;
    color: var(--color-blanco);
    padding: 0;
    margin: 1rem 1rem;

    position: fixed;
    z-index: 5;

    top: 2.5vh;
    right: 5%;

    opacity: 0;

    cursor:pointer;

    transition: opacity 2s ease;

    display: none;
}
/* Boton hamburguesa para responsive */
.Hamburguesa-button.isActive{
    width: 2rem;
    color: var(--color-blanco);
    padding: 0;
    margin: 1rem 1rem;

    position: fixed;
    z-index: 5;

    top: 2.5vh;
    right: 5%;

    opacity: 1;

    cursor:pointer;

    display: inherit;
}
/* Menu hamburguesa que se activa picando al boton y se (of/on)  haciendo scroll */
.Hamburguesa-nav{
    min-width: 5%;
    background-color:var(--color-rosa);
    color: var(--color-negro);

    font-family:var(--fuente-principal) ;
    font-size:var(--p-);
    font-weight: 700;
    text-transform: uppercase;

    border: .3rem solid var(--color-blanco);
    border-radius: .625rem;

    position: fixed;
    z-index:3;

    top: 15vh;
    right:  4%;

    display: flex;
    flex-flow: column;
    justify-content:flex-end;
    align-items: center;

    display: none;
    
}
/* Menu hamburguesa que se activa picando al boton y se (of/on)  haciendo scroll */
.Hamburguesa-nav.isActive{
    min-width: 5%;
    background-color: var(--color-rosa);
    color: var(--color-negro);

    font-family:var(--fuente-principal) ;
    font-size: var(--p-);
    font-weight: 700;
    text-transform: uppercase;

    border: .3rem solid var(--color-blanco);
    border-radius: .625rem;

    position: fixed;
    z-index: 4;

    top: 15vh;
    right: 4%;

    display: flex;
    flex-flow: column;
    justify-content:flex-end;
    align-items: center;
    
    animation: menu 1.2s ease;
    
}
/* Animacion del menu hamburguesa que sale de abajo de la window */
@keyframes menu{

    0%{
        transform: translateY(300%);
    }
    100%{
        transform: translateY(0%);
    }
}
/* Items hamburguesa */
.Hamburguesa-ul{

  display: flex;
  flex-flow: column;
  justify-content:center;
  align-items: center;

  gap: 2rem;

  margin: 1rem 0 1rem 0;
  
}
/* Icono hamburguesa */
.Hamburguesa-svg{

    width: 2rem;
  
    display: block;

}
/* Footer */

.Footer{
  width: 100%;  
  background-color: var(--color-negro);
  padding: 2rem 1rem;
  
  position: fixed;
 
  z-index: 4;

  bottom: 0;
  right: 0;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items:center;

}
/* Lista de svg redes sociales */
.Rrss-ul-svg{
  width: 70%;
  min-height: 10vh;
  /* background-color: aqua; */
  
  gap:  4rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content:center;
  align-items: center;
  text-align: center;
  
  position: absolute;
  z-index: 5;
  
  padding: 2rem;
}
/* Lista de Rrss pie de pagina con animacion */
.Rrss-ul-h4{
   
  width:70%;

  display: flex;
  flex-flow: row nowrap;
  justify-content:center;
  align-items: center;
  text-align: center;
  gap: 4rem;

  padding: 0  2rem ;

  position: absolute;
  z-index: 6;

  cursor: pointer;

  position: absolute;

}
/* Items redes sociales con animacion */
.Rrss-li.h4{

  width:15%;
  min-height: 2rem;
  background-color:var(--color-html);
  font-family: var(--fuente-secundaria);
  font-size: var(--h5-);
  font-weight: 600;
  color: var(--color-blanco);

  border: .3rem solid transparent;
  border-radius: .9375rem;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;

  text-transform: uppercase;

  transition: border 1s ease ;
  
}
/* Animacion redes sociales footer */
.Rrss-li.h4:hover{

  border: .3rem solid var(--color-rosa) ;
}

.Rrss-li-svg{
  width: 15%;
  
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  
}
/* Enlaces a las redes sociales con target_blank */
.Rrss-a{
  width: 2rem;
  color:var(--color-rosa);

}
.Rrss-a.isActive{

  animation: sube 2s ease 1 both ;

/* Animacion redes sociales */
}
@keyframes sube{

  0%{
      transform: translateY(0%);
     
  }
  100%{
      transform: translateY(-150%);
      
  }

}
/* Seccion pie de pagina con enlace al email y año de creacion de la web */
.Section-footer{
  width:100%;
  color: var(--color-blanco);
  padding: 1rem ;
  
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;

} 
/* Enlace para email */
.Footer-h2{
    
  color: var(--color-blanco);
  font-family: var(--fuente-secundaria);
  font-size: var(--p-);
  font-weight: 700; 
    
  margin: 0 1rem 0 0 ;
}
/* Fecha de creacion de la web */
.Footer-h3{
  color: var(--color-blanco);
  font-size: var(--p-);
  font-weight: 600;
  font-family: var(--fuente-secundaria);
  text-transform: uppercase;  
}

/* Archivo style css */

/* Main */
.Home .Main{
    width: 100%;
    min-height: 100vh;
    
    position: fixed;
    top: 0;

    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;

    transition: background-color  1s ease;

}


.Home .Main-h1{
    display: none;
}
/* Este la seccion del titulo de la web que aparecera al entrar en la web */
.Home .Main-section{
    width: 100%;
    min-height: 20vh;
    
    position: absolute;

    z-index: 2;

    top: 35vh;

    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;

    animation-name: aparece;
    animation-duration: 6s;
}
@keyframes aparece{

    0%{
        opacity: 0;

    }
    7%{
        opacity: 0;
    }
    
    100%{
        opacity: 1;
    }
    
}
/* Aqui tenemos la lista contenedora de los items del titulo de la web  */
.Home .Main-ul{

    width: 100%;
    /* background-color: red; */
    color: transparent;
    margin: 0 0 3rem 0;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items:center;

    position: relative;

    -webkit-text-stroke-color: var(--color-blanco);
    -webkit-text-stroke-width: 2px;

    gap: .5rem;
}
/* Esta es la lista contenedora que esta detras de la lista principal */
.Home .Main-ul.container{

    width: 100%;
    color: var(--color-blanco);
    margin: 0 0 3rem 0;
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items:center;

    position: absolute;
    z-index: 6;

    gap: .5rem;
}
/* Aqui tenemos los items que hacen hover  */
.Home .Main-li{
    min-height: 8rem;
    font-family: var(--fuente-principal) ;
    font-size: var(--h1-);
    font-weight:700;

    letter-spacing: .5rem;
    text-transform: uppercase;

    transition: opacity .4s ease-out;
    
}
.Home .Main-li:hover{

    opacity:0;
}


/* Aqui tenemos la contenedora de los titulos que entran al abrir la web */
.Home .Main-wrapper{
    width: 100%;
    
    font-size: var(--h2-);
    /* background-color: greenyellow; */
    color: var(--color-blanco);
    background-color:var(--color-negro);
    text-align: center;
    letter-spacing: .3rem;

    text-transform: uppercase;

    position: relative;
    
    animation-name: intro;
    animation-duration: 4.5s;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

}
/* Aqui tenemos la contenedora de los titulos que entran al abrir la web */
.Home .Main-h2{
    width: 100%;
   
    font-family: var(--fuente-principal);
    font-size: var(--h2-);
    font-weight: 700;
    background-color:var(--color-negro);
    
    
    position: absolute;
    z-index: 3;
    top: 0;

    transition: opacity  1s ease , background-color 1s ease;
    
}
/* Este es el efecto de los titulos que entran al abir la web */
.Home .Main-h2:hover{

    opacity: 0;

}
.Home .Main-h3{
  width: 100%;
  
  
  font-family: var(--fuente-principal);
  font-size: var(--h2-);
  font-weight: 700;
  text-align: center;
  background-color: transparent;
  color: var(--color-blanco);
  text-transform: uppercase;

  position: absolute;
  top: 0;

  transition:opacity 1s ease ;
}

@keyframes intro{
  0%{
      transform: translatex(100%);
  }
  100%{
      transform: translateX(0);
  }
}

/* Este seria el h2 isActive para el color se la seccion html */
.Home .Main-h2.isActive{
    width: 70%;
    font-family: var(--fuente-principal);
    font-size: var(--h2-);
    font-weight: 700;
    background-color:var(--color-html-fondo);
    
    position: absolute;
    z-index: 3;
    top: 0;

    transition: opacity 1s ease ,  background-color 1s ease;
}
/* Este seria el h2 isActive para la seccion css */
.Home .Main-h2.isActivebrown{
    width: 70%;
    font-family: var(--fuente-principal);
    font-weight: 700;
    font-size: var(--h2-);
    background-color:var(--color-css-fondo);
    position: absolute;
    z-index: 3;
    top: 0;

    transition: opacity 1s ease ,  background-color 1s ease;
}
/* Este seria el isActive para la seccion js */
.Home .Main-h2.isActivebrilli{
    width: 70%;
    font-family: var(--fuente-principal);
    font-weight: 700;
    font-size: var(--h2-);
    background-color:var(--color-js);
    position: absolute;
    z-index: 3;
    top: 0;

    transition: opacity 1s ease , background-color 1s ease;
}

/* Este is Active servira para js al hacer over en elementos cambiaria de color el main */
.Home .Main.isActive{
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-html-fondo);

  position: fixed;

  z-index: 3;
  top: 0;

  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;

}
/* Aqui tenemos el h2 de la web con efecto */
.Home .Main-h2{
  
  color: var(--color-blanco);
  font-family: var(--fuente-principal);
  font-size: var(--h2-);
  font-weight: 700;
  
  margin: 0 1rem 0 0 ;

}
/* Este es el h3 tambien con efecto */
.Home .Main-h3{
  color: var(--color-blanco);
  font-size: var(--h2-);
  font-weight: 700;
  font-family: var(--fuente-principal);
  text-transform: uppercase;

 
}
/* Este es el isActive que da color al main el color es el que concuerda con la imagen no es el de css */
.Home .Main.isActivebrown{
  width: 100%;
  min-height: 100vh;
  background-color:var(--color-css-fondo);

  position: fixed;

  z-index: 3;
  top: 0;

  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;

  transition: background-color  1s ease;

}
/* Este es el isActive que le da color al main, el color es el que concuerda con la imagen */
.Home .Main.isActivebrilli{
  width: 100%;
  min-height: 100vh;
  background-color:var(--color-js);

  position: fixed;

  z-index: 3;
  top: 0;

  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;

  transition: background-color  1s ease;
}
/* Aqui empieza la seccion havilidades */
.Home .Habilidades-section{

    width: 100%;
    min-height: 250vh;
    position: absolute;

    z-index: 3;
    
    top: 100vh;
    
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-content: center;

    backdrop-filter: blur(2rem) ;

}

.Home .Habilidades-h3{
    
   display: none;
    
}

.Home .Habilidades-figure{
    width: 50%;
    min-height: 70vh;
    /* background-color: orange; */
}
.Home .Habilidades-article.html{
    width: 50%;
    min-height: 70vh;
    /* background-color: blue; */
    color: var(--color-blanco);
    
    display: flex;
    flex-flow: row wrap;
    justify-content:center;
    align-content: center;

    hyphens: none;
}
.Home .Habilidades-h4{
    display: none;
}

.Home .Habilidades-article.css{
    width: 50%;
    min-height: 70vh;
    /* background-color: aqua; */
    color: var(--color-blanco);

    display: flex;
    flex-flow: row wrap;
    justify-content:center;
    align-content: center;

    hyphens: none;
}

.Home .Css-figure{
    width: 50%;
    min-height: 70vh;
    /* background-color: blueviolet; */
}
.Home .Java-figure{
    width: 50%;
    min-height: 70vh;
    /* background-color: red; */
}
.Home .Habilidades-article.java{
    width: 50%;
    min-height: 70vh;
    /* background-color: yellowgreen; */
    color: var(--color-blanco);

    display: flex;
    flex-flow: row wrap;
    justify-content:center;
    align-content: center;

    hyphens: none;

}
.Home .Habilidades-figure.html{
    width: 50%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

    opacity: 1;
}
.Home .Habilidades-img.html{
    width: 70%;
    max-height: 50vh; 
    
}
.Home .Habilidades-p.html{
    width: 95%;
    font-family:var(--fuente-secundaria);
    font-size:var(--h5-);
    font-weight: 600;
    padding: .5rem;

    line-height: 2rem;
}

.Home .Habilidades-figure.css{
    width: 50%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

}
.Home .Habilidades-img-css{
    width: 70%;
    max-height: 50vh;

}
.Home .Habilidades-p-css{
    width: 95%;
    font-family:var(--fuente-secundaria);
    font-size:var(--h5-);
    font-weight: 600;
    padding: .5rem;

    line-height: 2rem;

}
.Home .Habilidades-figure.java{
    width: 50%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    
}
.Home .Habilidades-img-java{
    width: 70%;
    max-height: 50vh;
    

}
.Home .Java-h4{
    display: none;
}
.Home .Habilidades-p-java{
    width: 95%;
    font-family:var(--fuente-secundaria);
    font-size:var(--h5-);
    font-weight: 600;
    padding: .5rem;

    line-height: 2rem;

}
/* Archivo About css */

/* About Main */

/* Esta seccion me presento  */

.About .Main{
  width:100%;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.About .Main-article{

 width:100%;

 display: flex;
 flex-flow: row nowrap;
 justify-content: center;
 align-items: center;

}
.About .Main-h4{
 display: none;
}
/* Aqui esta el parrafo de presentacion */
.About .Main-p{
  width: 50%;
 
  padding: 3rem ;
  font-family: var(--fuente-secundaria);
  font-weight: 700;
  font-size:var(--h4-);
  text-shadow: .2rem .2rem .2rem   rgba(255, 255, 255, 0.33);

  color: var(--color-blanco);

  hyphens: none;

  margin: auto;

}
/* Aqui esta el contenedor de la imagen mia */
.About .Main-section{
  width: 20rem;
  min-height: 20rem;

  background-image: url(../assets/img/img_portfolio.webp);
  background-position: center center ;
  background-size: cover;
  border-radius: 50%;
 
  margin: 15rem auto;
}
.About .Main-h2{
  display: none;
}

/* Seccion work css */

/* Aqui estaran alojados losproyectos que ire realizando */

/* Main */

.Work .Main{
  width: 100%;
 
  position: relative;
  top: 20vh;
 
  
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.Work .Main-section{
  width: 80%;
  /* background-color: aqua; */
  margin: 0 0 15rem 0;
  display: flex;
  flex-flow: column;
  justify-content:center;
  align-items: center;

}
/* Titulo de la seccion */
.Work .Main-h2{
  width: 100%;
  color: var(--color-blanco);
  margin: 0 0 3rem 0;
  
  border-radius: .9375rem;

  text-align: center;
  text-transform: uppercase;

  font-size:var(--h3-);
  font-family: var(--fuente-principal);
  letter-spacing: .125rem;
  font-weight: 700;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-end;

}
/* Contenedor de los items */
.Work .Main-ul{
  width:100%;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;

  gap: 1rem;

  position: relative;
}
/* Items o imagenes con efecto al hacer over */
.Work .Main-li{
  width:calc(100% / 4);
  
  color: var(--color-html);
  font-size:var(--h5-);
  text-transform: uppercase;
  font-family: var(--fuente-secundaria);
  font-weight: 600;

  border-radius: .9375rem;

  margin: 0 0 0 0;
  padding: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;

  flex:1;

  transition: flex 1s ease;
}
.Work .Main-li:hover{

  flex:2;
}

.Work .Main-h4{
  width: 3%;
  
}
/* Imagenes aleatorias */
.Work .Main-li.uno{
 
  background-image: url(../assets/img/miReto.png);
  background-position: center center;
 
}
.Work .Main-li.dos{
  background-image: url(../assets/img/stack.jpg);
  background-position: center center;
  background-repeat: inherit;
  color:var(--color-rosa);
}
.Work .Main-li.tres{
  background-image: url(../assets/img/captura.jpg);
  background-position: center center;
}
.Work .Main-li.cuatro{
  background-image: url(../assets/img/imagen_abstract-tres.webp);
  background-position: center center;
}

/* Seccion Me css */

/* Main */

/* Aqui e puesto a lo que me dedico a dia de hoy */

.Me .Main{
  width: 100%;

  position: relative;
  top: 10vh;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  
}
.Me .Main-h3{
  display: none;
}
/* Seccion formulario */
.Me .Main-section.form{
  width: 100%;
 
  
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;

  opacity: .7;
}
/* Seccion con video */
.Me .Main-section.video{
  width: 100%;
  
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
/* Video de la seccion */
.Me .Main-video{
width:calc(100% / 2);

position: absolute;
top: 10vh;

margin: 0 0 25rem 0;
object-fit: cover;

display: flex;
flex-flow: column;
justify-content: center;
align-items: center;

}
/* Imagen detras de parrafo */
.Me .Main-img{
width: calc(100% / 2);


position: absolute;
top: 10vh;
object-fit: cover; 

}
/* Parrafo delante de imagen */
.Me .Main-p{
width: calc(100% / 2);
background-color: rgba(255, 255, 255, 0.692);
opacity: .7;

position: absolute;
top: 70vh;
margin: .5rem 0 5rem 0;
padding: 3rem ;
font-family: var(--fuente-secundaria);
font-weight: 700;
font-size:var(--h4-);


color: var(--color-negro);

hyphens: none;


z-index: 3;
}
.Me .Main-h2{

background-color: rgba(255, 255, 255, 0.941);
border-radius: .5rem;
padding: .5rem;
font-family: var(--fuente-principal);
font-weight: 700;
font-size: var(--h5-);
text-transform: uppercase;



position: absolute;

top: 60vh;
}

.Me .Form{
min-width: 30%;
min-height: 30vh;

background-color: var(--color-blanco);
opacity: .9;
border-radius: 1.25rem;
box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
padding: 2rem;

font-family: var(--fuente-secundaria);

position:absolute;

top: 70vh;
z-index: 2;

display: flex;
flex-flow: column;
justify-content: center;
align-items: center;

}
.Formulario{
  width: 100%;
  min-height: 30vh;
}
.Me .Input{
width: 100%;

box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
border-radius: .1875rem ;

margin: 0 0 .3125rem 0;
padding: 0.2rem;
}
.Me .Label {
width: 100%;
margin: 0 0 .3125rem 0;
padding: 0.2rem;

}
.Me .Button{
width: 100%;
padding: 1rem;
border: .125rem solid rgba(0, 0, 0, 0.2) ;
cursor: pointer;
}

/* Responsive */

/* Breackpoints Header */
@media(max-width:1050px){
  .Header{
    display: none;
  }
  .Hamburguesa-button{
   
    display: block;
    opacity: 1;
  }
  .Hamburguesa-nav{
   
    display: none;
  }
  .Hamburguesa-nav.isActive{
    
    position: fixed;
   
  }
  .Cursor{
    display: none;
  }
}

@media(max-width:500px){
  
  .Header-img{
    width: 3rem;
    top: 2.5vh;
    left: 5%;
  }
  .Hamburguesa-button{
  
    display: block;
    top: 2vh;
    right: 5%;
  }
  .Hamburguesa-button.isActive{
    
    display: block;
    top: 2vh;
    right: 5%;
  }
}
/* Max height */

@media(max-height:567px){
  .Header-img{
    width: 3rem;
    top: 2vh;
    left: 5%;
  }
  .Hamburguesa-button{
    display: block;
  }
}

/* Breackpoints Footer */


@media(max-width:1050px){
  
  .Rrss-li.h4{
    font-size: var(--p-);
  }
  
}
@media(max-width:790px){
  .Rrss-ul-h4{
    display: none;
  }
  .Rrss-li-svg{
    font-size: 50%;
  }
  .Rrss-ul-svg{
    gap: 1rem;
  }
  .Section-footer{
    padding: 1rem 1rem;
  }
}
@media(max-width:500px){
 
  .Footer{
    
    position: static;
    flex-flow: column;
  }
  
  .Section-footer{
    width: 50%;
    
    position: fixed;
    z-index: 3;
    bottom: 0;
    right: 0;

    flex-flow: column;

  }
  .Rrss-ul-svg{
    width: 50%;
    position: fixed;
    bottom: 0;
    left: 0;
    
  }
}

/* Max height */

@media(max-height:567px){
  .Footer{
    padding: 1rem 1rem 2rem 1rem;
  }
}

/* Breackpoints seccion About */

@media (max-width:1300px){
  .About .Main-p{
    font-size: 100%;
  }
 
}
@media(max-width:1050px){
  
  .About .Main-section{
   width: 15rem;
   min-height: 15rem;
  }
} 
@media(max-width:790px){
  
  .About .Main-section{
    width: 10rem;
    min-height: 10rem;
  }
  
}

@media(max-width:500px){
  .About .Main-section{
    margin: 5rem;
    
  }
  .About .Main-article{
    width: 100%;
    flex-flow: column-reverse;
    position: absolute;
    top: 5vh;
  }

  .About .Main-p{
    width: 90%;
    min-height: 40vh;
    margin: 0 0 5rem 0;
  }
  
}

/* Breackpoints seccion Work */

@media(max-width:1150px){
  .Work .Main-h2{
   font-size: 100%;
  }
}

/* Breackpoints seccion Me */

@media(max-width:1260px){
  .Me .Main-p{
    top: 60vh;
    font-size: 100%;
  }
  
  .Me .Form{
 
   top: 40vh;
   
  }
  .Me .Main-h2{
    top: 30vh;
  }
}
@media(max-width:1060px){

  .Me .Form{
 
   top: 18vh;
   
  }
  .Me .Main-h2{
    top: 10vh;
  }
}
@media(max-width:870px){
  
   .Me .Main{
    flex-flow: column;

    gap: 5rem;
   }
   .Me .Main-section.video{

    flex-flow: column-reverse;

    position: relative;
    top: 20vh;
   }
   .Me .Main-video{
    width: 80%;
    position: static;

    margin: 0 0 2rem 0;
   }
   .Me .Main-img{
    width: 80%;
    
    position: static;
   }
   
   .Me .Form{
    width: 70%;
    position: static;

    margin: 0 0 15rem 0;

   }
   .Me .Main-p{
    width: 100%;
    position: static;
    color: var(--color-blanco);
    background-color: transparent;

   }
   .Me .Main-h2{
    position: static;

    margin: 0 0 2rem 0;
   }
}

@media(max-height:360px){
  .Me .Main{
   min-height:60vh
  }
  .Me .Main-img{
   object-fit: initial;
  }
  .Me .Main-video{
   object-fit: initial;
  }
  .Home .Main-ul{
    margin: 0 0 0 0;
  }
  .Home .Main-li{
    
    font-size: 1rem;
}

}
/* Breackpoints seccion Home */

@media(max-width:1024px){
  .Home .Main-li{
    font-size: 3rem;
  }
  .Home .Main-h2{
    font-size: 2rem;
  }
  .Home .Main-h3{
    font-size: 2rem;
  }
  .Home .Habilidades-p.html{
    font-size: 90%;
    line-height: 1.5rem;
  }
  .Home .Habilidades-p-css{
    font-size: 90%;
    line-height: 1.5rem;
  }
  .Home .Habilidades-p-java{
    font-size: 90%;
    line-height: 1.5rem;
  }
  .Home .Habilidades-img.java{
   width: 100%;
  }
  
}

@media(max-width:724px){
   .Home .Main-li{
    font-size: 2rem;
   }
   .Home .Main-h2{
    font-size: 1rem;
  }
  .Home .Main-h3{
    font-size: 1rem;
  }
}
@media(max-width:510px){
  
  .Home .Habilidades-section{
    min-height: 500vh;

    flex-flow: column;
    align-items: center;
  }
  
   .Home .Habilidades-article.html{
    width: 80%;
    
  }
  .Home .Habilidades-article.css{
    width: 80%;
    
  }
  .Home .Habilidades-article.java{
    width: 80%;
    margin: 0 0 10rem 0;
  }
  .Home .Habilidades-p.html{
    font-size: 100%;
    
  }
  .Home .Habilidades-p-css{
    font-size: 100%;
    
  }
  .Home .Habilidades-p-java{
    font-size: 100%;
   
  }
  .Home .Habilidades-figure.html{
    width: 100%;
   
  }
  .Home .Habilidades-figure.css{
    width: 100%;
   
  }
  .Home .Habilidades-figure.java{
    width: 100%;
   
  }
  .Home .Main-ul{
    
     gap: 0;
     margin: 0 0 0 0;
  }
  .Home .Main-ul.container{
    gap: 0;
    margin: 0 0 0 0;
  }
  .Home .Main-ul{
    margin: 0 0 0 0;
  }
  .Home .Main-li{
    
    font-size: 1rem;
  }
  
}
