.wallSection {
    display: grid;
    grid-template-rows: 10vh 80vh 5vh;
}

/* Encabezado */
.divUp {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 82px;
    background-color: #A58AF0;
}

/* Creacion del nuevo post */
.divMid {
    margin-top: 20px;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-column: 1;
    grid-row: 2;
    height: 100%;
    width: auto;
    overflow: auto;
}

.imgFamiliaHome {
    width: 25%;
    height: auto;
    justify-content: center;
    display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Tarjetas de post publicados */
.postCard {
    background-color: #8AF0D8;
    width: 300px;
    height: auto;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.divPosts {
    overflow: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Ajusta las columnas de manera automática */
    row-gap: 180px;

    margin-top: 5;
}

.titleElement,
.postElement {
    display: flex;
    justify-content: center;
    margin: 10px;
    color: #575252;
}

.likeBtn {
    display: flex;
    justify-content: center;
}


.btnHome,
.btnPlus,
.btnUser {
    width: 50px;
    height: 50px;
    margin: 15px;
}

.btnHome:hover,
.btnPlus:hover,
.btnUser:hover {
    background-color: black;
}

.formPost {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
}

.labelTittlePost {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    color: #F89626;

}

.inputTittlePost {
    width: 70%;
    height: 45px;
    top: 150px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px #8AF0D8;
    border-radius: 15px;
    border: none;
    margin-top: 5px;
}

.inputTittlePost::placeholder {
    color: #AFACAC;
    padding: 20px;
}

.inputPost {
    width: 300px;
    height: 80px;
    left: calc(50% - 300px/2);
    top: 150px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px #8AF0D8;
    border-radius: 10px;
    border: none;
    margin-top: 10px;
}

.inputPost::placeholder {
    color: #AFACAC;
    padding: 20px;
    text-align: center;
}

.buttonPostear {
    display: grid;
    width: 150px;
    height: 30px;
    left: 0;
    right: 0;
    top: 134px;
    margin: auto;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    background-color: #F89626;
    color: #FFFFFF;
    border: none;
    box-shadow: 0px 4px 4px #AFACAC;
    border-radius: 15px;
    font-size: medium;
    margin-top: 10px;
}

.buttonPostear {
    background-color: #fba645;
    margin-bottom: 10px;
}

.textoNuevasPublicaciones {
    font-family: 'Montserrat', sans-serif;
    color: #F89626;
    text-align: left;
    margin-bottom: -8px;
}

.lineaDivisora {
    width: 305px;
    height: 0.2px;
    left: 42px;
    margin-bottom: 3px;
    border: 1px solid #A58AF0;
    box-shadow: 2px 3px 3px #FFD1F7;
}

.postCard {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
    padding: 18px;
    gap: 20px;
    justify-content: space-between;
}

.postElement {
    font-family: Arial, Helvetica, sans-serif;
    color: #575252;
}

.titleElement {
    font-family: 'Montserrat';
    margin-top: -6px;
}

.deleteBtn {
    margin-right: 5px;
    height: 25px;
    width: 25px;
}

.editBtn {
    margin-right: 5px;
    height: 25px;
    width: 25px;

}

.divBtnIconos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
}