*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../Fotos/fondo.webp");
}
/* Estilos enlaces traballos */
    .traballos{
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .traballos li{
        position: relative;
        list-style: none;
    }
    .traballos li a{
        position: relative;
        font-size: 3em;
        text-decoration: none;
        line-height: 1em;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px #D9BFD8;
    }
    .traballos li a::before{
        content: attr(data-text);
        position: absolute;
        color: var(--clr);
        width: 0;
        overflow: hidden;
        transition: 0.7s;
        border-right: 8px solid var(--clr);
        -webkit-text-stroke: 1px var(--clr);
    }
    .traballos li a:hover::before{
        width: 100%;
        filter: drop-shadow(0 0 25px var(--clr));
    }
/* Enlaces redes sociales */
    .social{
        position: fixed;
        bottom: 0;
        right: 0;
        margin: 20px;
        padding: 0;
        display: flex;
    }
    .social li{
        position: relative;
        list-style: none;
        width: 30px;
        height: 30px;
        margin: 0 15px;
        transform: rotate(-30deg) skew(25deg);
        background: rgba(204, 204, 204, 0.5);
    }
    .social li span{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000000;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 15px !important;
    }
    .social li span{
        transition: transform 0.5s, opacity 0.5s;
    }
    .social li:hover span:nth-child(5){
        transform: translate(40px, -40px);
        opacity: 1;
    }
    .social li:hover span:nth-child(4){
        transform: translate(30px, -30px);
        opacity: 0.8;
    }
    .social li:hover span:nth-child(3){
        transform: translate(20px, -20px);
        opacity: 0.6;
    }
    .social li:hover span:nth-child(2){
        transform: translate(10px, -10px);
        opacity: 0.4;
    }
    .social li:hover span:nth-child(1){
        transform: translate(0, 0);
        opacity: 0.2;
    }
    .social li:nth-child(1) span{
        background: #4AC959;
    }
    .social li:nth-child(2) span{
        background: #E1306C;
    }
    .social li:nth-child(3) span{
        background: #FF0000;
    }
    .social li:nth-child(4) span{
        background: #0000FF;
    }
    .social li:nth-child(5) span{
        background: #FF9900;
    }
    .social li:nth-child(6) span{
        background: #FF0000;
        font-weight: bolder;
    }
    .social li:nth-child(7) span{
        background: #FFFFFF;
        color: #000000;
    }
    .social li:nth-child(9) span{
        background: #18C37D;
    }
    .social li:nth-child(10) span{
        background: #FFFFFF;
    }
    .social li:nth-child(11) span{
        background: #6441A5;
    }
    .social li:nth-child(12) span{
        background: #2C2C2C;
    }
    .social li:nth-child(13) span{
        background: #FFFFFF;
    }
    img{
        width: 25px;
    }
    .tooltip {
        display: none;
        position: absolute;
        background-color: #333;
        color: #fff;
        padding: 5px;
        border-radius: 5px;
        left: -20%;
        top: -250%;
    }