*{
/* ### Primary */
    --Blue_500: hsl(215, 51%, 70%);
    --Cyan_400: hsl(178, 100%, 50%);
    /* ### Neutral */
    --Blue_950_body: hsl(217, 54%, 11%);
    --Blue_900_main: hsl(216, 50%, 16%);
    --Blue_800: hsl(215, 32%, 27%);
    --White: hsl(0, 0%, 100%);
    padding: 0;
    margin: 0;
    font-size: 18px;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--Blue_950_body);
    justify-content: center;
    /* Eliminar */
    /* background-image: url(./design/desktop-design.jpg); */
    /* background-position: center; */
    /* background-position: 30em; */
    .caja-principal{
        padding: 1.2em 1.2em;
        width: 19.1em;
        height: 33em;
        background-color: var(--Blue_900_main);
        border-radius: 0.7em;
        .caja-img{
            width: 100%;
            height: 16.8em;
            background-image: url(./images/image-equilibrium.jpg);
            background-position: center;
            background-size: cover;
            overflow: hidden;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.7em;
            .div{
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: rgba(0, 255, 255, 0.34);
                z-index: -1;
            }
        }
        .caja-img:hover{
            .div{
                z-index: 1;
            }
        }
        .caja-info{
            padding-top:1.4em ;
            padding-bottom: 1.3em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.158);
            h2{
                font-size: 1.2em;
                font-weight: 600;
                color: var(--White);
                cursor: pointer;
            }
            h2:hover{
                color: var(--Cyan_400);
            }
            .p1{
                padding-top: 1em;
                line-height: 1.4em;
                color: var(--Blue_500);
                font-weight: 300;
            }
            .caja-iconos{
                padding-top: 1.3em;
                display: flex;
                justify-content:space-between;
                align-items: center;
                p{
                    font-size: 0.93em;
                    color: var(--Blue_500);
                    font-weight: 400;
                    img{
                        padding-right: 0.19em;
                    }
                }
                .ps{
                    color: var(--Cyan_400);
                }
            }
        }.caja-perfil{
            padding-top: 0.8em;
            display: flex;
            gap: 0.82em;
            align-items: center;
            img{
                width: 1.9em;
                padding: 1px;
                display: flex;
                align-items: center;
                background-color: var(--Blue_500);
                border-radius: 100% ;
                background-size: cover;
            }
            .p2{
                font-size: 0.9em;
                color: var(--Blue_500);
                font-weight: 300;
                span{
                    color: var(--White);
                    cursor: pointer;
                    font-size: 1.02em;
                }
                span:hover{
                    color: var(--Cyan_400);
                }
            }
        }
    }
}