*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
ul,li,a{
    border: none;
    text-decoration: none;
    list-style: none;
}

body{
    background: linear-gradient(to top, #200467, #000, #161123);

    min-height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
}
.topPart{
    width: 100%;
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul{
    list-style: none;
    flex-flow: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    li{
        color: #fff;
    }
}
.body{
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.body .foto{
    width: 200px;
    height: 200px;
    /* border: 1px solid red; */
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: #ccc;
    box-shadow: 0px 0px 1px 3px rgb(255, 255, 255);
 
    img{
        position: absolute;
        object-fit: contain;
        top: -60px;
        left: -90px;
        width: 320px;
        transition: .5s ease-in-out;

        &:hover{
            transform: scale(1.2);
        }
    }
}
.body .text{
    color: #fff;
}
.more{
    width: 100%;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    padding: 3px;
    margin-top: 10px;
    background: linear-gradient(35deg,  #1293b7, #000, #962fbf);
    transition: 0.3s ease-in-out;
    border: none;

    &:hover{
        transform: scale(1.1);
    }
}






.container .content{
    width: 100%;
    min-height: 300px;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap ;
}

.face{background: linear-gradient(to right, #1877f2, #3b5998, transparent );}
.inst{background: linear-gradient(to right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, transparent);}
.what{background: linear-gradient(to right, #25d366 , #128c7e, transparent 100%);}
.link{background: linear-gradient(to right, #0a66c2, #004182, transparent 100%);}
.retangulo{
    border: 1px solid #0007;
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: -4px 7px 2px 0px  #000;
    transform: rotate(-15deg) skew(15deg);

    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 100%;
    transition: background-size .5s ease-out, box-shadow .5s ease-out;

    &:hover{
        background-size: 100% 100%;
        box-shadow: -7px 15px 5px 0px  #000;
        animation-name: tremer;
        animation-duration: 0.1s;
        animation-iteration-count: 2;
        animation-direction: alternate;

        font-weight: 800;
        color: #fff;
    }
}

.icon{
    font-size: 2.5rem;
    color: #fff;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes tremer {
    0%{transform: translate(5px) rotate(-15deg) skew(15deg);}
    100%{transform: translate(-5px) rotate(-15deg) skew(15deg);}
}