*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #232323;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100vw;
}
.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 10px;
}
.bienvenida{
    color: #7b7b7b;
    font-size: 1em;
    margin-bottom: 20px;
}
.foto-perfil{
    width: 40vw;
    height: auto;
    border-radius: 50%;
    border: 3px solid blueviolet;
    
}
@media (min-width: 580px) {
    .foto-perfil{
        width: 180px; 
    }

}
h1{
    /* color: #e3e3e3; */
    text-align: center;
    text-transform: uppercase;

    background: linear-gradient(
        to right,
        #7953cd 20%,
        #00affa 30%,
        #0190cd 70%,
        #764ada 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-fill-color: transparent; */
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}





.span-persona{
    color: #7b7b7b;
    font-size: 1.2em;
    text-align: center;
}
.links-cosas{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}
.item-link{
    background: rgb(0,175,250);
    background: linear-gradient(312deg, rgba(0,175,250,1) 0%, rgba(121,83,205,1) 59%);
    width: 70vw;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    margin: 10px 0;
    box-shadow: 1px 1px 8px rgb(29, 28, 28);
    transition: ease-in-out;
    border-radius: 10px;
}
    
    /* border: 4px solid;
    border-image: linear-gradient(#f18137, #af24dd) 1;
    animation: anim-border 2.5s infinite;
@keyframes anim-border{
    50%{
        border-image: linear-gradient(360deg, #f18137, #af24dd) 1; ;
    }
} */


.item-link:hover{
     background: #464646;
     transition: ease-in;
}
.ancla-links{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    text-decoration-line: none;
}
.imagen-item{
    height: 30px;
    padding: 0 20px;
}
.titulo-1{
    color: #e3e3e3;
}
.boton-copy{
    background-color: transparent;
    border: 0px;
}
.imagen_item_copy{
    height: 29px;
    width: 29px;
}
.imagen_item_copy:hover{
    height: 32px;
    width: 32px;
}
.firma-final{
    color: #464646;
    margin-top: 10px;
    /* margin-bottom: 20; */
}