html, body{
    margin: 0%;
    padding: 0%;
    height: 100%;
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: #cef3e8;
    background-color: #0F0F0F;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23107E70' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%2300FFE8'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 0%;
    padding: 0%;
}

h2 {
    font-size: 30px;
    font-weight: 400;
    margin: 5px;
    padding: 0%;
}

h3 {
    font-weight: 700;
    font-size: 26px;
}

h4 {
    font-weight: 500;
    font-size: 22px;
}

p {
    font-weight: 200;
    font-size: 16px;
}

a {
    font-size: 20px;
}

span {
    font-size: 16px;
}

label, button {
    font-size: 20px;
    font-weight: 300;
}

input, textarea {
    font-size: 16px;
}

nav {
    background-color: #013432;
    height: 8%;
    width: 100%;
    margin: 0%;
    position: fixed; /* Clava el nav en la parte superior */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding: 0%;
    margin:1%;
    margin-left: 50px;
    height: 98%;
}

.logo img {
    padding: 0%;
    margin:0%;
    height: 100%;
    filter: invert(80%);
    transition: filter .3s ease;
}

.logo img:hover {
    filter: invert(100%);
}

.logo_menu {
    padding: 0%;
    margin-right: 10px;
    height: 60%;
    filter: invert(80%);
    display: none;
}

.ocultar_menu {
    display: none;
}

.cont_menu {
    background-color: #01463f;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; right: 0;
    position: fixed; /* Clava el nav en la parte superior */
    display: flex;
    margin-top: 40px;
    width: 60vw;
    height: 40vh;
    display: initial;
}

.menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 90%;
    margin: 0%;
    padding: 0%;
}

.menu li {
    display: inline;
}

.menu li a {
    text-decoration: none;
    color: #9ce7d1;
    font-size: 20px;
}

.menu li a:hover {
    color: #71acac;
}

nav ul {
    padding: 0%;
    margin:0%;
    width: 40%;
    margin-right: 30px;
    display: flex;
    align-self: center;
    justify-content: space-between;
}

nav ul li {
    display: inline;
    margin: 0%;
    padding: 0%;
}

nav ul li a {
    margin: 0%;
    padding: 0%;
    color: #cef3e8;
    text-decoration: none;
    transition: color .3s ease; /* Para una transición suave */
}

nav ul li a:hover {
    color: #71acac;
}

header {
    height: 100vh;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div_titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.div_titulo h1 {
    font-style: normal;
    text-align: center;
}

.div_titulo h2 {
    font-style: normal;
    text-align: center;
}

header a {
    margin: 5px;
    padding: 8px;
    border-radius: 10px;
    border: 1px;
    box-shadow: #000000 2px 2px 5px;
    background-color: #4ad3aa;
    text-decoration: none;
    color: #0F0F0F;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    transition: box-shadow, scale .3s ease;
}

header a:hover {
    box-shadow: #000000 5px 5px 5px;
    scale: 1.03;
}

.div_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

#SobreMi {
    height: 100vh;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: center;
    align-items: center;

}

#SobreMi article {
    background-color: #0F0F0F;
    width: 95%;
    height: 88%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 0%;
    padding: 0%;
    margin-top: 4%;
}

.div_info {
    width: 50%;
}

.div_foto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.div_foto img {
    width: 100%;
}

#Habilidades {
    height: 100vh;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Habilidades article {
    background-color: #0F0F0F;
    margin-top: 4%;
    height: 70%;
    width: 70%;
    max-width: 1400px;
    max-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    flex-direction: column;
}

.div_habilidades {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.div_habilidades div {
    background-color: #013432;
    width: 50%;
    height: 100%;
    border-radius: 20px;
    margin: 3px;
}

.info_habilidades {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info_habilidades img {
    width: 80px;
    margin: 10px;
}

.info_habilidades h4 {
    margin: 0%;
}

.info_habilidades p {
    width: 85%;
    text-align: center;
}

.lenguajes_habilidades {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lenguajes_habilidades div {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    height: 60%;
    justify-content: center;
}

.lenguajes_habilidades span {
    background-color: #9ce7d1;
    color: #0F0F0F;
    margin: 5px;
    border-radius: 20px;
    height: 40px;
    padding-left: 9px;
    padding-right: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 400;
}

#Proyectos {
    height: 100vh;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Proyectos article {
    background-color: #01463f;
    width: 60%;
    height: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    margin: 0%;
    padding: 0%;
    margin-top: 4%;
}

#Proyectos article a {
    text-decoration: none;
    color: #0F0F0F;
}

.cont_proyectos {
    height: 100%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1%;
}

.cont_proyectos div {
    background-color: #0F0F0F;
    width: 49%;
    height: 49%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.cont_proyectos div :hover {
    background-color: #1b1b1b;
}

#Contacto {
    height: 100vh;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Contacto article {
    background-color: #0F0F0F;
    width: 60%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    margin: 0%;
    padding: 15px;
    margin-top: 4%;
    max-height: 800px;
}

#Contacto article h3 {
    margin: 5px;
}

.div_contacto {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 90%;
    margin: 0%;
    padding: 0%;
}

.div_formulario {
width: 40%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
max-height: 600px;
}

.div_contactos {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    background-color: #013432;
    border-radius: 5%;
    max-height: 600px;
}

.div_contactos img {
    width: 30%;
    margin: 0%;
    margin-top: 40px;
}

.cont_p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
    height: 100%;
}

.cont_p p {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 50%;
}

.cont_p div {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cont_p a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13%;
}

.cont_p a img {
    width: 100%;
    margin: 0px;
    transition: scale .3s ease; /* Para una transición suave */
}

.cont_p a :hover {
    scale: 1.2;
}

.cont_p div {
    margin-top: 20px;
}

.contact-form-container {
    background-color: #01463f;
    width: 100%;
    height: 100%;
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

form div {
    width: 90%;
}

label {
    font-weight: 800;
    color: #cef3e8;
    margin-top: 7%;
}

input, textarea {
    background-color: #6bdbba;
    color: #0F0F0F;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    width: 100%;
    height: 40px;
    padding: 0%;
    border: none;
    margin-bottom: 7%;
    border-radius: 20px;
}

textarea {
    height: 60px;
}

button {
    background-color: #00c49a;
    color: #0F0F0F;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    transition: background-color, scale .3s ease; /* Para una transición suave */
    width: 90%;
    height: 15%;
    border: none;
    border-radius: 1000px;
}

button:hover {
    background-color: #01a080;
    scale: 1.01;
}

footer {
    background: #013432;
    height: 5%;
    width: 100%;
    margin: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width:1200px) {
    h1 {
        font-size: 40px;
        margin: 0%;
    }

    h2 {
        font-size: 27px;
        margin: 0px;
    }

    h3 {
        font-size: 25px;
    }
    
    h4 {
        font-size: 22px;
    }
    
    p {
        font-size: 16px;
    }

    a {
        font-size: 16px;
    }

    span {
        font-size: 16px;
    }
    
    label, button {
        font-size: 18px;
    }

    input, textarea {
        font-size: 16px;
    }

    label {
        margin: 10px;
    }

    button {
        margin-top: 0px;
    }

    .div_info h3, h4 {
        margin: 0%;
        margin-bottom: 10px;
    }

    #Habilidades article {
        width: 75%;
        height: 75%;
        margin-top: 0%;
        padding-top: 25px;
        max-height: 500px;
    }

    #Habilidades article h3 {
        margin: 0%;
    }

    .info_habilidades img {
        width: 60px;
        margin: 0%;
    }

    .info_habilidades p {
        margin: 0%;
    }

    .div_info h3, h4 {
        margin-top: 10%;
    }

    .lenguajes_habilidades {
        justify-content: start;
    }

    input {
        height: 30px;
    }

    textarea {
        height: 45px;
    }

    button {
        height: 45px;
    }

    .div_contactos img {
        margin-top: 0%;
    }

    #Contacto article {
        height: 85%;
        width: 80%;
        max-height: 400px;
    }

    #Proyectos article {
        width: 80%;
    }


}

@media (min-width:2000px) {
    
    h1 {
        font-size: 65px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 35px;
    }
    
    h4 {
        font-size: 30px;
    }
    
    p {
        font-size: 25px;
    }

    a {
        font-size: 30px;
    }

    span {
        font-size: 23px;
    }
    
    label, button {
        font-size: 30px;
    }

    input, textarea {
        height: 60px;
        font-size: 27px;
    }

    textarea {
        height: 100px;
    }

    label {
        margin: 30px;
    }

    button {
        margin-top: 10px;
        margin-bottom: 10px;
    }

}

@media (max-width:1000px) {
    nav {
        height: 4%;
    }

    nav ul {
        width: 60%;
    }

    #SobreMi article {
        height: 80%;
        justify-content: space-around;
    }

    .div_foto img {
        width: 140%;
        margin-left: 20px;
    }

    .div_info {
        width: 40%;
        margin-right: 20px;
    }

    #Habilidades article {
        width: 90%;
    }

    #Proyectos article {
        width: 60%;
        height: 90%;
    }

    .cont_proyectos {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .cont_proyectos div {
        width: 100%;
        height: 50%;
        display: flex;
    }

    #Contacto article {
        height: 100%;
        width: 95%;
        max-height: 500px;
    }

    .div_contacto {
        max-height: 400px;
    }
}

@media (max-width:682px) {
    h1 {
        font-size: 40px;
        margin: 0%;
    }

    h2 {
        font-size: 27px;
        margin: 0px;
    }

    h3 {
        font-size: 25px;
    }
    
    h4 {
        font-size: 22px;
    }
    
    p {
        font-size: 16px;
    }

    a {
        font-size: 16px;
    }

    span {
        font-size: 16px;
    }
    
    label, button {
        font-size: 18px;
    }

    input, textarea {
        font-size: 16px;
    }

    .cont_ul {
        display: none;
    }

    nav {
        height: 60px;
        justify-content: space-between;
    }

    .logo {
        margin: 10px;
        height: 80%;
    }

    .logo_menu {
        display: initial;
    }

    .div_foto {
        display: none;
    }

    .div_info {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .div_info p {
        text-align: center;
    }

    #Habilidades article {
        width: 95%;
        height: 85%;
        max-height: 900px;
        margin-top: 60px;
    }

    .div_habilidades {
        flex-direction: column;
        height: 100%;
    }

    .div_habilidades div {
        width: 100%;
        height: 48%;
    }

    .info_habilidades img {
        display: none;
    }

    .info_habilidades h4 {
        display: none;
    }

    .lenguajes_habilidades {
        justify-content: center;
    }

    .lenguajes_habilidades div {
        height: 80%;
    }

    #Proyectos article {
        width: 95%;
        margin-top: 60px;
    }

    #Contacto article {
        width: 95%;
        height: 85%;
        max-height: 900px;
        margin-top: 60px;
        justify-content: start;
    }

    .div_contacto {
        flex-direction: column-reverse;
        max-height: 900px;
    }

    .div_formulario {
        width: 100%;
        height: 59%;
    }

    .div_contactos {
        width: 100%;
        height: 39%;
        border-radius: 20px;
    }

    .img_contacto {
        display: none;
    }

    .cont_p a img {
        width: 90%;
    }

    html, body {
        min-height: 650px;
    }
}

@media (max-width:450px) {
    h1 {
        font-size: 30px;
        margin: 0%;
    }

    h2 {
        font-size: 24px;
        margin: 0px;
    }

    h3 {
        font-size: 22px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    p {
        font-size: 12px;
    }

    a {
        font-size: 14px;
    }

    span {
        font-size: 14px;
    }
    
    label, button {
        font-size: 16px;
    }

    input, textarea {
        font-size: 12px;
    }

    .lenguajes_habilidades span {
        height: 20px;
    }

    nav {
        height: 40px;
    }

    #Proyectos article {
        margin-top: 40px;
    }

    #SobreMi article {
        margin-top: 40px;
    }

    #Habilidades article {
        margin-top: 20px;
        height: 85%;
    }

    #Contacto article {
        margin-top: 40px;
    }

    .div_formulario {
        height: 69%;
    }

    .div_contactos {
        height: 29%;
    }

    .cont_p div {
        margin-top: 0%;
    }

    html, body {
        min-height: 540px;
    }
}