
li.active {
  background-color: #343A40;
}

a.active {
  color: white;
}

body
{
    background:#fff;
    font-family: 'Poppins', sans-serif;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
    background-position: center;
    background-repeat: repeat;
    background-size: 7%;
    background-color: #fff;
    transition: all 200ms linear;
    padding: 0px;
}

.principal
{
   background-color: #343A40;
}

.container {
    width: 100%;
    align-items:center;
}

.group{
 margin-bottom:50px;
}

.card-header img{
    width: 150px;
    height: 150px;
    display:block;
    margin:auto;
}

nav.navbar img.logo{
    max-width: 45px;
}
.user-options{
    position: relative;
    top:-8px;
    margin-left: 15px;
}
.user-options a{
    color: #FFF;
    padding-left: 8px;
}
#search-results {

}

#search-results .dropdown-toggle,
#search-results .btn{
    border-radius: 0;
    border-color:#FFF;
    color: #FFF;
}
/*POST*/
.post {
    transition: 250ms all;
}
.post:hover{
    box-shadow:0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);
    transform: scale(1.01);
}
.post img {
    width: 40%;               /* Ocupar todo el ancho del contenedor */
    aspect-ratio: 4 / 3;       /* O el que mejor se vea: ej 16/9, 1/1 */
    object-fit: contain;       /* La imagen se ajusta al área sin recortarse */
    padding: 0;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    display: block;
    margin: auto;
    transition: all 1s;
}


.post a{
    text-decoration: none;
    color: inherit;
}
.favorite-post{
    color:#FFF;
    cursor: pointer;
}
/*PROFILE*/
.bg-profile{
    border-radius: 50%;
    width: 110px;
    height: 110px;
    background: #7ebcff;
}
.img-profile{
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    margin: 5px;
    border-radius: 50%;
}

/*GENERAL*/
.box-center{
    display: block;
    margin: 0 auto;
}