.usuario-unico{
    background-color: #eee;
    padding: 5rem 0;
    height: 100vh;
}
.usuario-unico h2{
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 400;
}
.usuario-unico .grids{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}
.usuario-unico .grids article{
    width: 450px;
    height: auto;
    background-color: #fff;
    box-shadow: 0 3px 3px #ccc;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
article .info-user{
    display: flex;
    gap: 2rem;
}
.img-user{
    width: 100px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
}
.img-user i{
    font-size: 5rem;
}
.info-data-user{
    flex: 1;
}
.info-data-user p{
    font-size: 1.8rem;
    line-height: 2rem;
    color: #777;
}
.info-data-user p span{
    text-transform: uppercase;
    margin-left: 1rem;
    color: #111;
}
.btns{
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}
.btns a{
    text-decoration: none;
    font-size: 1.6rem;
    
}
.btns a i{
    margin-right: 1rem;
}
.btn-edi,
.btn-del{
     color: #fff;
    padding: 1rem 3rem;
    transition: all .3s ease;
}
.btn-edi:hover,
.btn-del:hover{
    opacity: .8;
}
.btn-edi{
    background-color: green;   
}
.btn-del{
    background-color: rgb(150, 12, 12);   
}