@import url("https://fonts.googleapis.com/css2?family=Montaga&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&display=swap");

html {
    overflow-x: hidden;
    background-color: rgb(4, 6, 8);
}

* {
    box-sizing: border-box;
    padding: 0;
    font-family: "Bungee", cursive;
}

body {
    margin: 0;
}

header {
    background-color: hsl(0, 0%, 0%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 8rem;
    overflow: hidden;
}

header img {
    height: 100px;
}

header h1 {
    color: #ff0000;
    font-size: rem;
    margin-right: auto;
    text-shadow: rgb(255, 0, 0) 3px 3px 13px;
}

header ul {
    list-style: none;
    padding-inline: 3rem;
}

header li {
    display: inline-block;
    padding-inline-end: 1rem;
}

header ul li a {
    text-decoration: none;
    color: white;
    transition: color, text-shadow, 2s ease;
}

header ul li a:hover {
    color: red;
    text-shadow: #ff0000 1px 1px 10px;
    font-size: 1.5rem;
}

header button {
    background-color: rgb(0, 0, 0);
    cursor: pointer;
    margin-right: 1rem;
    border-radius: 1rem;
    padding: 3px 5px 5px;
    color: rgb(255, 0, 0);
    animation: borde 3s linear infinite;
    border: solid transparent;
    border-color: #f82626;
}

@keyframes borde {
    0% {
        border-left-color: #ff0000;
    }

    10% {
        border-top-color: #ffee00;
    }

    20% {
        border-right-color: #ff9900;
    }

    30% {
        border-bottom-color: #002fff;
    }

    40% {
        border-left-color: #a200ff;
    }

    50% {
        border-top-color: #1900ff;
    }

    60% {
        border-right-color: #d400ff;
    }

    70% {
        border-bottom-color: #ff004c;
    }

    80% {
        border-left-color: #ff9900;
    }

    90% {
        border-top-color: #00ff0d;
    }

    100% {
        border-right-color: #ff004c;
    }
}

header button:hover {
    background-color: rgba(238, 238, 238, 0);
    color: rgb(255, 255, 255);
    border-color: rgba(255, 255, 255, 0);
    animation: contactame 4s ease infinite;
}

@keyframes contactame {
    0% {
        border-left-color: #ff0000;
        border-top-color: #ff0000;
        border-right-color: #ff0000;
        border-bottom-color: #ff0000;
    }

    25% {
        border-left-color: #fbff00;
        border-top-color: #ffe600;
        border-right-color: #eeff00;
        border-bottom-color: #fffb00;
    }

    50% {
        transform: scale(1.1);
        color: red;
        text-shadow: #ff0000 1px 1px 10px;
    }

    75% {
        border-left-color: #1100ff;
        border-top-color: #1100ff;
        border-right-color: #1100ff;
        border-bottom-color: #0004ff;
    }

    100% {
        border-left-color: #ff0095;
        border-top-color: #f700ff;
        border-right-color: #ea00ff;
        border-bottom-color: #ff00d4;
    }
}

.w1 {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: -0.1rem;
    background-image: url(img/wave1.png);
    background-size: cover;
    animation: w1 20s linear infinite;
}

@keyframes w1 {
    0% {
        background-position: 0%;
    }

    10% {
        background-position: 100%;
    }

    20% {
        background-position: 200%;
    }

    30% {
        background-position: 300%;
    }

    40% {
        background-position: 400%;
    }

    50% {
        background-position: 500%;
    }

    60% {
        background-position: 600%;
    }

    70% {
        background-position: 700%;
    }

    80% {
        background-position: 800;
    }

    90% {
        background-position: 900%;
    }

    100% {
        background-position: 1000%;
    }
}

.w2 {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: -0.1rem;
    background-image: url(img/wave1.png);
    background-size: cover;
    opacity: 0.3;
    animation: w2 5s linear infinite;
}

@keyframes w2 {
    0% {
        background-position: 0%;
    }

    10% {
        background-position: -100%;
    }

    20% {
        background-position: -200%;
    }

    30% {
        background-position: -300%;
    }

    40% {
        background-position: -400%;
    }

    50% {
        background-position: -500%;
    }

    60% {
        background-position: -600%;
    }

    70% {
        background-position: -700%;
    }

    80% {
        background-position: -800;
    }

    90% {
        background-position: -900%;
    }

    100% {
        background-position: -1000%;
    }
}

.contenedor_titulo {
    position: absolute;
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 12rem;
}

.contenedor_titulo button {
    color: rgb(255, 166, 166);
    background-color: #850000;
    border-radius: 11px;
    border: transparent;
    scale: 2;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 3rem;
    cursor: pointer;
    transition: transform, box-shadow, color 3s ease, background-color 3s ease;
    box-shadow: rgb(255, 0, 0) px px px px;
    transition: 3s ease;
}

.contenedor_titulo button:hover {
    transform: scale(1.2);
    box-shadow: rgb(255, 0, 0) 1px 1px 10px 1px;
    color: rgb(0, 0, 0);
    background-color: #ff0101;
}

#titulo_principal {
    color: rgb(255, 255, 255);
    scale: 3;
}

.habilidades_btn {
    color: rgb(156, 113, 113);
    background-color: #810606;
    border-radius: 11px;
    border: transparent;
    scale: 2;
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    margin-right: 4rem;
    transition: transform 2s ease, box-shadow 2s ease, color 0.5s ease;
}

.habilidades_btn:hover {
    transform: scale(1);
    box-shadow: rgb(255, 0, 0) 1px 1px 10px 1px;
    color: rgb(0, 0, 0);
}

.curriculum {
    color: rgb(255, 183, 183);
    background-color: #810606;
    border-radius: 11px;
    border: transparent;
    scale: 2;
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
    margin-left: 4rem;
    animation: cv 5s ease infinite;
    transition: transform 3s ease, color 1s ease, background-color 3s ease,
        box-shadow 3s ease;
}

.curriculum:hover {
    transform: scale(1.1);
    color: rgb(255, 0, 0);
    background-color: #310000;
    box-shadow: red 1px 1px 10px 1px;
}

.contenedor_sobremi {
    width: 100%;
    margin: auto;
    justify-content: center;
}

.sub_container_sobremi {
    height: 50rem;
    justify-content: center;
    position: relative;
    margin-top: 50rem;
}

.sobre_mi {
    height: 30rem;
    text-align: center;
    margin-top: 11rem;
    justify-content: center;
}

.titulo_sobremi {
    color: rgb(255, 255, 255);
}

.texto_sobremi {
    color: red;
}

.sobre_mi button {
    color: rgb(245, 172, 172);
    background-color: #810606;
    border-radius: 11px;
    border: transparent;
    cursor: pointer;
    scale: 1.6;
    padding: 4px;
}

.mi_imagen {
    border-radius: 15rem;
    box-shadow: rgba(255, 0, 0, 0.514) 1px 15px 40px 10px;
    scale: 0.8;
}

.mi_contendedor {
    display: flex;
}

.mi_contendedor h1 {
    color: rgb(255, 255, 255);
}

.conocimiento {
    background-color: #0130ff00;
    color: rgb(255, 255, 255);
    font-size: 32px;
    margin-top: 8rem;
}

.contendedor_cards {
    width: 80%;
    margin: auto;
    text-align: center;
}

.conocimientos_container {

    margin-bottom: 2rem;
    justify-content: center;
}

.c1,.c2,.c3,.c4,.c5,.c6 {
    background-color: rgb(117, 0, 0);
    margin: 3rem;
    height: 20rem;
    width: 20rem;
    border-radius: 2rem;
    box-shadow: #dd0000 1px 1px 40px 3px;
}

.c1 img,.c2 img,.c3 img,.c4 img,.c6 img {
    max-width: 400px;
}

.c5 img {
    max-width: 300px;
}

.c1-1,.c2-2,.c3-3,.c4-4,.c5-5,.c6-6 {
    display: flex;
    justify-content: center;
}

.c1 h1,.c2 h1,.c3 h1,.c4 h1,.c6 h1 {
    text-align: center;
    color: rgb(31, 1, 1);
}

.c5 h1 {
    text-align: center;
    margin-top: 3rem;
    color: rgb(31, 1, 1);
}

.contenedor_de_proyectos {
    width: 100%;
    margin: auto;
    margin-top: 40rem;
}

.proyectos_titulo {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 32px;
}

.proyectos {
    justify-content: center;
}

.topgrade_container {
    background-color: rgb(117, 0, 0);
    border-radius: 3rem;
    width: 100%;
    height: 100%;
    box-shadow: rgba(255, 0, 0, 0.514) 1px 15px 20px 10px;
}

.paginita_container {
    background-color: rgb(117, 0, 0);
    border-radius: 3rem;
    width: 100%;
    height: 100%;
    box-shadow: rgba(255, 0, 0, 0.514) 1px 15px 20px 10px;

}

.topgrade_container h1 {
    color: white;
    text-align: center;
}

.paginita_container h1 {
    color: white;
    text-align: center;
}

.img_top {
    scale: 0.97;
    border-radius: 1rem;
    margin-bottom: -2rem;

}

.img_pag {
    scale: 0.97;
    border-radius: 1rem;
    margin-bottom: -2rem;
}

.parrafo_topgrades,.parrafo_paginita {
    color: rgb(0, 0, 0);
    margin: auto;
    font-size: 12px;
}

.contact {
    background-color: rgba(255, 0, 0, 0);
    width: 100%;
    margin: auto;
    justify-content: center;
    border-radius: 1rem;
    padding: 25px 15px 205px;
    color: rgb(255, 0, 0);
    margin-top: 4rem;
}

.contact_c2 {
    background-color: #2c2a33d7;
    text-align: center;
    margin: 4rem;
    border-radius: 2rem;
    height: 45rem;
    box-shadow: rgba(255, 0, 0, 0.452) 1px 15px 20px 10px;
    padding: 25px 25px 25px 25px;
}

.inputs_names,.inputs_contactos {
    background-color: #002fff00;
    scale: 1.4;
    margin-bottom: 1rem;
}

.inputs_names input,.inputs_contactos input {
    background-color: rgba(243, 92, 92, 0);
    border-radius: 10px;
    border: rgb(255, 0, 0) solid 2px;
    margin-bottom: 1rem;
    text-align: center;
    color: rgb(255, 255, 255);
    outline: none;
}

.contenedor_cuadrotexto {
    justify-content: center;
    margin-top: 4rem;
}

.contact textarea {
    text-align: center;
    background-color: rgba(243, 92, 92, 0);
    color: rgb(255, 255, 255);
    border: red solid 3px;
    outline: none;
    border-radius: 4px;
}

.contact ::placeholder {
    color: rgb(255, 0, 0);
}

.sumit_enviar {
    color: rgb(245, 172, 172);
    background-color: #810606;
    border-radius: 11px;
    border: transparent;
    cursor: pointer;
    margin-top: 4rem;
    padding: 4px;
    scale: 1.4;
    transition: transform, box-shadow, color, background-color, 2s ease;
}

.sumit_enviar:hover {
    transform: scale(1.1);
    box-shadow: rgb(255, 0, 0) 1px 1px 20px 2px;
    background-color: #030000;
    color: red;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px rgb(243, 92, 92) inset;
    -webkit-text-fill-color: #030000;
}

footer {
    bottom: 0;
    font-family: "Bungee", cursive;
    background: rgb(32, 6, 6);
    background: -moz-linear-gradient(180deg,
            rgba(32, 6, 6, 0) 0%,
            rgba(115, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(180deg,
            rgba(32, 6, 6, 0) 0%,
            rgba(115, 0, 0, 1) 100%);
    background: linear-gradient(180deg,
            rgba(32, 6, 6, 0) 0%,
            rgba(115, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#200606", endColorstr="#730000", GradientType=1);
    color: #ffffff;
    padding: 20px;
    padding-top: 10rem;
    padding-bottom: 10rem;
    text-align: center;
}

.contenedor_lis_p {
    display: flex;
    justify-content: center;
}

.logo_footer {
    height: 10rem;
}

.logo_footer img {
    width: 10rem;
}

.lista_footer {
    list-style: none;
}

.contenedor_lis_p p {
    color: #ffa7a7;
    text-align: center;
}

.parrafo_footer {
    background-color: #002fff00;
    width: 75rem;
    height: 10rem;
}

.lista_footer {
    justify-content: center;
    background-color: rgba(255, 0, 0, 0);
;
}

.lista_footer li {
    list-style: none;
    padding-left: 3rem;
    text-align: right;
}

.lista_footer li a {
    text-decoration: none;
    color: white;
    transition: color, text-shadow, 0.5s ease;
}

.lista_footer li a:hover {
    color: red;
    text-shadow: #ff0000 1px 1px 10px;
}

.footer-content {
    font-size: 14px;
    border: none;
    margin-top: 3rem;
    height: 1px;
    background-color: #ffffff;
}


/* RESPONSIVE 100% ###################################################################################################################################*/


@media screen and (min-width: 1200px) and (max-width: 13000px) {
    
    

    .habilidades_btn {
        padding: 1px;
        margin: 1px;
    }

    .habilidades_btn:hover {
        transform: scale(1);
    }

    .curriculum {
        background-color: #0004ff;
    }

    .curriculum:hover {
        transform: scale(1.1);
    }

    .contenedor_sobremi {
        width: 100%;
        margin: auto;
    }

    .sub_container_sobremi {
        width: 100%;
        display: flex;
        
    }

    .sobre_mi {
        width: 100%;
        margin-top: 10rem;
    }

    .contenedor_de_texto_sobre_mi{
        margin-left: 250px;
        margin-right: 250px;
    }

    .titulo_sobremi {
        color: rgb(255, 255, 255);
        font-size: 1.4rem;
        padding: 2px;
        margin-top: 14rem;
    }

    .texto_sobremi {
        font-size: 0.8rem;
        padding: 10px;
    }

    .sobre_mi button {
        scale: 1.5;
    }

    .mi_contendedor {
        width: 60%;
        height: 60%;
        margin: auto;
        justify-content: center;
        padding: 9px;
    }

    .mi_imagen {
        scale: 2;
        border-radius: 4rem;

    }

    .conocimiento {
        background-color: #0130ff00;
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 32px;
        margin-top: 20rem;
    }

    .contendedor_cards {
        width: 100%;
        margin: auto;
        scale: 1;
    }
    
    .conocimientos_container {
        background-color: #00ff0d00;
        display: flex;
    }

    .contenedor_de_proyectos {
        width: 100%;
        margin: auto;
        margin-top: 20rem;
        scale: 0.9;
    }
    .proyectos{

        display:flex;
        background-color: #0004ff00;
    }

    .topgrade_container{
        margin: auto;
        width: 100%;
        margin-right: 10rem ;
    }

    .paginita_container{
        margin: auto;
        width: 100%;
        height: 100%;
    }
    .img_top {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .img_pag {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .parrafo_topgrades,.parrafo_paginita {
        color: rgb(0, 0, 0);
        margin: 2rem;
        font-size: 16px;
    }

        .contenedor_cuadrotexto {
        margin: auto;
        margin-top: 4rem;
        display: flex;
        scale: 1.6;
    }

    .contenedor_cuadrotexto textarea{
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sumit_enviar {
        margin: auto;
        padding-left: 10rem;
        padding-right: 10rem;
        margin-top: 6rem;
        scale: 1;
    }

    footer {
        padding: 20px;
        padding-top: 10rem;
        padding-bottom: 10rem;
        text-align: center;
    }
    
    .contenedor_lis_p {
        display: flex;
        justify-content: center;
        background-color: #0004ff00;
    }
    
    .logo_footer img {
        width: 8rem;
    }
    
    .lista_footer {
        list-style: none;
    }
    
    .contenedor_lis_p p {
        font-size: 0.9rem
    }
    
    .parrafo_footer {
        background-color: #002fff00;
        width: 75rem;
        height: 10rem;
    }
    
    .lista_footer {
        text-align: center;
        background-color: rgba(255, 0, 0, 0);
        width: 25rem;
    }
    
    .lista_footer li {
        list-style: none;
        padding-inline-end: 1rem;

    }
    
    .lista_footer li a {
        text-decoration: none;
        color: white;
        transition: color, text-shadow, 0.5s ease;
    }
    
    .lista_footer li a:hover {
        color: red;
        text-shadow: #ff0000 1px 1px 10px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        font-size: 14px;
        border: none;
        margin-top: 3rem;
        height: 1px;
        background-color: #ffffff;
    }
    
}

/* RESPONSIVE 1200 ###################################################################################################################################*/


@media screen and (min-width: 1000px) and (max-width: 1200px) {
    header ul {
        padding-inline: 1rem;
    }

    header li {
        display: inline-block;
        font-size: 0.9rem;
    }

    header h1 {
        font-size: 1.5rem;
        text-shadow: rgb(255, 0, 0) 3px 3px 13px;
    }

    header ul li a:hover {
        font-size: 1.1rem;
    }

    header button {
        scale: 0.8;
    }

    .contenedor_titulo {
        background-color: #0004ff00;
    }

    .contenedor_titulo button {
        scale: 1.5;
    }

    .contenedor_titulo button:hover {
        transform: scale(1.2);
    }

    #titulo_principal {
        color: rgb(255, 255, 255);
        scale: 1.99;
    }

    .habilidades_btn {
        padding: 1px;
        margin: 1px;
    }

    .habilidades_btn:hover {
        transform: scale(1);
    }

    .curriculum {
        background-color: #0004ff;
    }

    .curriculum:hover {
        transform: scale(1.1);
    }

    .contenedor_sobremi {
        width: 100%;
        margin: auto;
    }

    .sub_container_sobremi {
        width: 100%;
        display: flex;
    }

    .sobre_mi {
        width: 90%;
        margin-top: 10rem;
    }

    .contenedor_de_texto_sobre_mi{
        margin-left: 250px;
        margin-right: 250px;
    }

    .titulo_sobremi {
        color: rgb(255, 255, 255);
        font-size: 1.4rem;
        padding: 2px;
        margin-top: 14rem;
    }

    .texto_sobremi {
        font-size: 0.8rem;
        padding: 10px;
    }

    .sobre_mi button {
        scale: 1.5;
    }

    .mi_contendedor {
        width: 60%;
        height: 60%;
        margin: auto;
        justify-content: center;
        padding: 9px;
    }

    .mi_imagen {
        scale: 2;
        border-radius: 4rem;

    }

    .conocimiento {
        background-color: #0130ff00;
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 32px;
        margin-top: 20rem;
    }

    .contendedor_cards {
        width: 100%;
        margin: auto;
        scale: 0.8;
    }
    
    .conocimientos_container {
        background-color: #00ff0d00;
        display: flex;
    }

    .contenedor_de_proyectos {
        width: 100%;
        margin: auto;
        margin-top: 20rem;
        background-color: #00ff0d00;
        scale: 0.63;
    }

    .contenedor_de_proyectos {
        width: 100%;
        margin: auto;
        margin-top: 20rem;
        scale: 0.9;
    }

    

    .proyectos{

        display:flex none;
        background-color: #0004ff00;
    }

    .topgrade_container{
        margin: auto;
    }

    .paginita_container{
        margin: auto;
        margin-top: 5rem;

    }
    .img_top {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .img_pag {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .parrafo_topgrades,.parrafo_paginita {
        color: rgb(0, 0, 0);
        margin: 2rem;
        font-size: 16px;
    }

        .contenedor_cuadrotexto {
        margin: auto;
        margin-top: 4rem;
        display: flex;
        scale: 1.6;
    }

    .contenedor_cuadrotexto textarea{
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sumit_enviar {
        margin: auto;
        padding-left: 10rem;
        padding-right: 10rem;
        margin-top: 6rem;
        scale: 1;
    }

    footer {
        padding: 20px;
        padding-top: 10rem;
        padding-bottom: 10rem;
        text-align: center;
    }
    
    .contenedor_lis_p {
        display: flex;
        justify-content: center;
        background-color: #0004ff00;
    }
    
    .logo_footer img {
        width: 8rem;
    }
    
    .lista_footer {
        list-style: none;
    }
    
    .contenedor_lis_p p {
        font-size: 0.9rem
    }
    
    .parrafo_footer {
        background-color: #002fff00;
        width: 75rem;
        height: 10rem;
    }
    
    .lista_footer {
        text-align: center;
        background-color: rgba(255, 0, 0, 0);
        width: 25rem;
    }
    
    .lista_footer li {
        list-style: none;
        padding-inline-end: 1rem;

    }
    
    .lista_footer li a {
        text-decoration: none;
        color: white;
        transition: color, text-shadow, 0.5s ease;
    }
    
    .lista_footer li a:hover {
        color: red;
        text-shadow: #ff0000 1px 1px 10px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        font-size: 14px;
        border: none;
        margin-top: 3rem;
        height: 1px;
        background-color: #ffffff;
    }
    
}

/* RESPONSIVE 1000 ###################################################################################################################################*/


@media screen and (min-width: 802px) and (max-width: 1000px) {
    header ul {
        padding-inline: 1rem;
    }

    header li {
        display: inline-block;
        font-size: 0.7rem;
    }

    header h1 {
        font-size: 1.2rem;
        text-shadow: rgb(255, 0, 0) 3px 3px 13px;
    }

    header img {
        height: 75px;
    }

    header ul li a:hover {
        font-size: 1.1rem;
    }

    header button {
        scale: 0.8;
    }

    .contenedor_titulo {
        background-color: #0004ff00;
    }

    .contenedor_titulo button {
        scale: 1.5;
    }

    .contenedor_titulo button:hover {
        transform: scale(1.2);
    }

    #titulo_principal {
        color: rgb(255, 255, 255);
        scale: 1.99;
    }

    .habilidades_btn {
        padding: 1px;
        margin: 1px;
    }

    .habilidades_btn:hover {
        transform: scale(1);
    }

    .curriculum {
        background-color: #0004ff;
    }

    .curriculum:hover {
        transform: scale(1.1);
    }

    .contenedor_sobremi {
        width: 100%;
        margin: auto;;
    }

    .sub_container_sobremi {
        width: 100%;
        display: flex none;
    }

    .sobre_mi {
        width: 100%;
    }

    .contenedor_de_texto_sobre_mi{
        margin-left: 250px;
        margin-right: 250px;
    }

    .titulo_sobremi {
        color: rgb(255, 255, 255);
        font-size: 1.4rem;
        padding: 2px;
        margin-top: 7rem;
    }

    .texto_sobremi {
        font-size: 0.8rem;
    }

    .sobre_mi button {
        scale: 1.5;
    }

    .mi_contendedor {
        width: 60%;
        height: 60%;
        margin: auto;
        justify-content: center;
        padding: 9px;
        margin-top: 60rem;
    }

    .mi_imagen {
        scale: 1.4;
        border-radius: 4rem;
    }

    .conocimiento {
        background-color: #0130ff00;
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 32px;
        margin-top: 8rem;
    }

    .contendedor_cards {
        width: 100%;
        margin: auto;
        scale: 0.6;
    }
    
    .conocimientos_container {
        background-color: #00ff0d00;
        display: flex;
    }

    .contenedor_de_proyectos {
        width: 100%;
        margin: auto;
        margin-top: 20rem;
        background-color: #ff000000;
        scale: 0.9;
    }

    

    .proyectos{

        display:flex none;
        background-color: #0004ff00;
    }

    .topgrade_container{
        margin: auto;
    }

    .paginita_container{
        margin: auto;
        margin-top: 5rem;

    }
    .img_top {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .img_pag {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .parrafo_topgrades,.parrafo_paginita {
        color: rgb(0, 0, 0);
        margin: 2rem;
        font-size: 16px;
    }

    .contact{
        scale: 1.1;
    }


    .inputs_names,.inputs_contactos {
        background-color: #002fff00;
        scale: 1.3;
        margin-bottom: 1rem;
    }
    
    .inputs_names input,.inputs_contactos input {
        background-color: rgba(243, 92, 92, 0);
        border-radius: 10px;
        border: rgb(255, 0, 0) solid 2px;
        margin-bottom: 1rem;
        text-align: center;
        color: rgb(255, 255, 255);
        outline: none;
    }
    
    .contenedor_cuadrotexto {
        justify-content: center;
        margin-top: 4rem;
        scale: 1.7;
    }
    
    .sumit_enviar {
        scale: 1.4;
        padding-left: 5rem ;
        padding-right: 5rem;
    }

    footer {
        padding: 20px;
        padding-top: 10rem;
        padding-bottom: 10rem;
        text-align: center;
    }
    
    .contenedor_lis_p {
        display: flex;
        justify-content: center;
        background-color: #0004ff00;
    }
    
    .logo_footer img {
        width: 8rem;
    }
    
    .lista_footer {
        list-style: none;
    }
    
    .contenedor_lis_p p {
        font-size: 0.9rem
    }
    
    .parrafo_footer {
        background-color: #002fff00;
        width: 75rem;
        height: 10rem;
    }
    
    .lista_footer {
        text-align: center;
        background-color: rgba(255, 0, 0, 0);
        width: 25rem;
    }
    
    .lista_footer li {
        list-style: none;
        padding-inline-end: 1rem;
        font-size: 0.8rem;
    }
    
    .lista_footer li a {
        text-decoration: none;
        color: white;
        transition: color, text-shadow, 0.5s ease;
    }
    
    .lista_footer li a:hover {
        color: red;
        text-shadow: #ff0000 1px 1px 10px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        font-size: 14px;
        border: none;
        margin-top: 3rem;
        height: 1px;
        background-color: #ffffff;
    }
    
}

/* RESPONSIVE 800 ###################################################################################################################################*/

@media screen and (min-width: 500px) and (max-width: 801px) {
    header ul {
        padding-inline: 1rem;
    }

    header li {
        display: inline-block;
        font-size: 0.6rem;
    }

    header h1 {
        font-size: 1.2rem;
        text-shadow: rgb(255, 0, 0) 3px 3px 13px;
    }

    header img {
        height: 75px;
    }

    header ul li a:hover {
        font-size: 1.1rem;
    }

    header button {
        scale: 0.8;
    }

    .contenedor_titulo {
        background-color: #0004ff00;
    }

    .contenedor_titulo button {
        scale: 1.4;
    }

    .contenedor_titulo button:hover {
        transform: scale(1.2);
    }

    #titulo_principal {
        color: rgb(255, 255, 255);
        scale: 1.156;
    }

    .habilidades_btn {
        padding: 1px;
        margin: 1px;
    }

    .habilidades_btn:hover {
        transform: scale(1);
    }

    .curriculum {
        background-color: #0004ff;
    }

    .curriculum:hover {
        transform: scale(1.1);
    }

    .contenedor_sobremi {
        width: 100%;
        margin: auto;
    }

    .sub_container_sobremi {
        width: 100%;
        display: flex none;
    }

    .sobre_mi {
        width: 100%;
    }

    .contenedor_de_texto_sobre_mi{
        margin-left: 50px;
        margin-right: 50px;
        
    }


    .titulo_sobremi {
        color: rgb(255, 255, 255);
        font-size: 1.4rem;
        padding: 2px;
    }

    .texto_sobremi {
        font-size: 0.8rem;
    }

    .sobre_mi button {
        scale: 1.2;
    }

    .mi_contendedor {
        width: 60%;
        height: 60%;
        margin: auto;
        justify-content: center;
        padding: 9px;
        margin-bottom: 5rem;
    }

    .mi_imagen {
        scale: 1.2;
        border-radius: 7rem;
    }

    .conocimiento {
        background-color: #0130ff00;
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 32px;
    }

    .contendedor_cards {
        width: 100%;
        margin: auto;
        scale: 1.2;
        margin-top: 35rem;
    }
    
    .conocimientos_container {
        display: flex none;
        margin: auto;
    }

    .c1,.c2,.c3,.c4,.c5,.c6 {
        margin: auto;
        margin-top: 6rem;
    }
    


    .contenedor_de_proyectos {
        width: 100%;
        margin: auto;
        margin-top: 20rem;
        background-color: #ff000000;
        scale: 0.9;
    }

    

    .proyectos{

        display:flex none;
        background-color: #0004ff00;
    }

    .topgrade_container{
        margin: auto;
    }

    .paginita_container{
        margin: auto;
        margin-top: 5rem;

    }
    .img_top {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .img_pag {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .parrafo_topgrades,.parrafo_paginita {
        color: rgb(0, 0, 0);
        margin: 2rem;
        font-size: 14px;
    }


    .contact{
        scale: 1.1;
    }


    .inputs_names,.inputs_contactos {
        scale: 1.3;
        margin-bottom: 3rem;
    }
    
    .inputs_names input,.inputs_contactos input {
        margin: auto;
        margin-bottom: 1rem;
        display: flex;
    }
    
    .contenedor_cuadrotexto {
        margin: auto;
        margin-top: 4rem;
        display: flex;
        scale: 1.1;
    }

    .sumit_enviar {
        margin: auto;
        padding-left: 60px;
        padding-right: 60px;
        margin-top: 2rem;
        scale: 0.8;
    }


    

    footer {
        padding: 20px;
        padding-top: 10rem;
        padding-bottom: 10rem;
        text-align: center;
    }
    
    .logo_footer img {
        width: 5rem;
    }
    
    
    .contenedor_lis_p p {
        font-size: 0.6rem
    }
    
    .parrafo_footer {
        width: 75rem;
        height: 10rem;
    }
    
    .lista_footer {
        text-align: center;
        background-color: rgba(255, 0, 0, 0);
        width: 25rem;
    }
    
    .lista_footer li {
        list-style: none;
        padding-inline-end: 1rem;
    }
    
    .lista_footer li a {
        font-size: 0.7rem;
    }
    
    .lista_footer li a:hover {
        font-size: 0.7rem;
    }
    
    .footer-content {
        margin-top: 0rem;
    }
    
}

/* RESPONSIVE 500 ###################################################################################################################################*/


@media screen and (min-width: 300px) and (max-width: 500px) {
    header ul {
        padding-inline: 1rem;
    }

    header li {
        display: inline-block;
        font-size: 0.6rem;
    }

    header h1 {
        font-size: 1.2rem;
        text-shadow: rgb(255, 0, 0) 3px 3px 13px;
    }

    header img {
        height: 75px;
    }

    header ul li a:hover {
        font-size: 1.1rem;
    }

    header button {
        scale: 0.8;
    }

    .contenedor_titulo {
        background-color: #0004ff00;
    }

    .contenedor_titulo button {
        scale: 1.2;
    }

    .contenedor_titulo button:hover {
        transform: scale(1.2);
    }

    #titulo_principal {
        color: rgb(255, 255, 255);
        scale: 1;
    }

    .habilidades_btn {
        padding: 1px;
        margin: 1px;
    }

    .habilidades_btn:hover {
        transform: scale(1);
    }

    .curriculum {
        background-color: #0004ff;
    }

    .curriculum:hover {
        transform: scale(1.1);
    }

    .contenedor_sobremi {
        width: 100%;
        margin: auto;
    }

    .sub_container_sobremi {
        width: 100%;
        display: flex none;
    }

    .sobre_mi {
        width: 100%;
    }

    .contenedor_de_texto_sobre_mi{
        margin-left: 50px;
        margin-right: 50px;
        
    }


    .titulo_sobremi {
        color: rgb(255, 255, 255);
        font-size: 1.1rem;
        padding: 2px;
    }

    .texto_sobremi {
        font-size: 0.8rem;
    }

    .sobre_mi button {
        scale: 1;
    }

    .mi_contendedor {
        width: 60%;
        height: 60%;
        margin: auto;
        justify-content: center;
        padding: 9px;
        margin-bottom: 5rem;
    }

    .mi_imagen {
        scale: 1.2;
        border-radius: 7rem;
    }

    .conocimiento {
        background-color: #0130ff00;
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 20px;
    }

    .contendedor_cards {
        width: 100%;
        margin: auto;
        scale: 0.8;
        margin-top: 15rem;
    }
    
    .conocimientos_container {
        display: flex none;
        margin: auto;
    }

    .c1,.c2,.c3,.c4,.c5,.c6 {
        margin: auto;
        margin-top: 6rem;
        scale: 0.9;
    }
    


    .contenedor_de_proyectos {
        width: 100%;
        margin: auto;
        margin-top: 20rem;
        background-color: #ff000000;
        scale: 0.9;
    }

    

    .proyectos{

        display:flex none;
        background-color: #0004ff00;
    }

    .topgrade_container{
        margin: auto;
    }

    .paginita_container{
        margin: auto;
        margin-top: 5rem;

    }
    .img_top {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .img_pag {
        max-width: 100%;
        border-radius: 1rem;
        margin-top: -1rem;
    }
    
    .parrafo_topgrades,.parrafo_paginita {
        color: rgb(0, 0, 0);
        margin: 2rem;
        font-size: 9px;
    }


    .contact{
        scale: 1;
    }

    .contact_c2{
        width: 100%;
        margin: auto;
    }


    .inputs_names,.inputs_contactos {
        scale: 1;
        margin-bottom: 1rem;
    }
    
    .inputs_names input,.inputs_contactos input {
        margin: auto;
        margin-bottom: 1rem;
        display: flex;
    }
    
    .contenedor_cuadrotexto {
        margin: auto;
        margin-top: 3rem;
        display: flex;
        scale: 1.1;
    }

    .sumit_enviar {
        margin: auto;
        padding-left: 60px;
        padding-right: 60px;
        margin-top: 2rem;
        scale: 0.9;
    }


    

    footer {
        padding: 20px;
        padding-top: 10rem;
        padding-bottom: 10rem;
        text-align: center;
    }
    
    .logo_footer img {
        width: 3rem;
        margin-top: 9rem;
    }
    
    
    .contenedor_lis_p p {
        font-size: 0.4rem
    }
    
    .parrafo_footer {
        margin-top: 7rem;
    }
    
    .lista_footer {
        text-align: right;
        background-color: rgba(255, 0, 0, 0);
        margin-top: 6rem;
    }
    
    .lista_footer li {
        display: flex;
    }
    
    .lista_footer li a {
        font-size: 0.6rem;
    }
    
    .footer-content {
        margin-top: 0rem;
        font-size: 0.7rem;
    }
    
}

