@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@600&display=swap');

:root {
    --Fuente-principal: 'Kanit', sans-serif;
    --Fuente-secundaria: 'Helvetica','Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    --color-fuente: white;
}

/* Layout principal */
body{
    background: linear-gradient(to top, #731836, #001227);
    color: var(--color-fuente);
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    position: relative;
}

/* CONTENIDO MAIN principal */

.container{
    margin-top: 5%;
    text-align: left;
    margin-left: 10%;
    margin-right: 10%;
    font-family: var(--Fuente-secundaria);
}

img{
    margin-right: 7px;
}

.imag{
    box-shadow: -15px 5px 10px black;
    border-radius: 50%;
}

.nombre{
    margin-top: 10px;
    font-family: var(--Fuente-principal);
    font-size: 3rem;
    text-shadow: 1px 6px 3px black;
}

.iconos{
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.leyenda{
    margin-top: 1%;
    margin-bottom: 1%;
}

.tecLeyenda{
    font-weight: 800;
    font-size: small;
    opacity:0.3;
}

.parrafo{
    font-style: oblique;
    margin-right: 10%;
    width: 100%;
}

/* Contenido pie de pagina */

footer{
    height: 70px;
    text-align: center;
    font-size: x-small;
    z-index: 2;
    opacity:0.3;
    font-family: var(--Fuente-secundaria);
}

.contact{
    text-align: center;
    margin-right: 10%;
    filter: invert(100%);
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10px;
}

.capa1{
    position: absolute;
    background-color: white;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 1;
}

/* Mediaquery for movil */

@media screen and (max-width: 768px){
    .container{
        text-align: center;
    }
    .imag{
        width: 100px;
    }
    .nombre{
        font-size: 2rem;
    }
    .sub{
        font-size: small;
    }
    .iconos{
        justify-content: center;
    }
    p{
        font-size: small;
    }
    .contact{
        text-align: end;
        margin-right: 3%;
    }

    .capa1{
        clip-path: polygon(100% 40%, 0% 100%, 100% 100%);
    }
}