* {
    margin: 0;
    box-sizing: border-box;
}

/*ESTILOS HOME*/
body{
    height: 100%;
    width: 100%;
    background: #fff;
}

img{
    height: 200px;
    width: 200px;
    border-radius: 7px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

header {
    padding: 50px;
    height: 8%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#logo {
    max-width: 150px; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
  }
  

#logoEncabezadoRegister{
    margin-top: 50px;
}


main{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;  
}

article {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.page-title, h2 {
    font-size: 15px;
    font-family: lato;
}

.custom-input, input {
    width: 340px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button{
    font-size: 10px;
    font-family: Verdana, Helvetica;
    font-weight: bold;
    color: rgb(0, 0, 0);
    border: 0px;
    border-radius: 4px;
    background: #FFCBA5;
    width: 340px;
    height: 35px;
    gap: 15px;
}

.custom-button {
    background-color: #FFCBA5;
    color: #333;
    border: none;
    width: 340px;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

.custom-button:hover {
    background-color: #d6bcdb;
}

.google-button {
    background-color: #fff;
    color: #856FAB;
    width: 340px;
    border: 1px solid #856FAB;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    /* margin: 5px; */
}

.google-button:hover {
    background-color: #856FAB;
    color: #fff;
}

/*ESTILOS FEED*/
#encabezadoFeed{
    padding: 0px;
    margin: 0px 0px 25px 0px;
}

#banner{
    width: 100%;
    height: 100%;
}

#muro {
    text-align: center;
    display: flex;
    justify-content: center;
}

#inputComentarios{
    width: 900px;
    height: 65px;
    gap: 50px; 
    margin: 30px 0px 0px 0px;
}

nav{
    display: flex;
    justify-content: right;
    margin-right: 10px;
}

#postRealizado{
    font-size: 18px;
    font-family: Verdana, Helvetica;
    margin-top: 30px;
    text-align: justify;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
}

strong{
    margin-bottom: 0px;
    width: 900px;
    padding: 5px;
    background-color: #856fabb1;
    font-size: 16px;
    margin: 1px;
    color: #fff;
}

p, #editable{
    width: 900px;
    height: auto;
    padding: 15px;
    background: white;
    border-radius: 0 0 4px 4px;
    border: 1px solid #856FAB;
}

#editable{
    border-color: #000000a2;
}

#btPost{
    width: 900px;
    display: flex;
    justify-content: right;
    margin-bottom: 30px;
    margin-top: 5px;
    gap: 10px;
}


#publicar, #editar, #guardar{
    width: 150px;
    font-size: 12px;
    font-weight: normal;
}

#eliminar{
    width: 50px; 
    background: #000000a2;
}
#eliminar .fa-trash {
    color: #ffffff;
    font-size: 20px;
  }

  .fa-arrow-right-from-bracket {
    color: #000000; 
    font-size: 24px; 
  }
  #cerrarSesion{
    width: 120px;
    background: #00000095;
    font-size: 12px;
    /* font-weight: strong; */
    color:  #fff;
    font-weight: normal;
  }
  

/*MEDIAQUERY*/
@media (max-width: 991.98px){

    img{
        height: 150px;
        width: 150px;
    }

    #inputComentarios{
        width: 700px;
        height: 65px;
    }

    p, #editable, strong{
        width: 700px;
        height: auto; 
    }

    #editable{
        border-color: #000000a2;
    }

    #btPost{
        width: 700px;
    }

}

@media (max-width: 767.98px){
    img{
        height: 100px;
        width: 100px;
    }

    h1, h2{
        font-size: 12px;
        font-family: Verdana, Helvetica;
    }
    
    .custom-input, input {
        width: 280px;
    }
    
    button, .custom-button, .google-button {
        width: 280px;
    }
    
    input {
        font-size: 12px;
        width: 280px;
        height: 35px;
        gap: 25px; 
    }

    #inputComentarios{
        width: 500px;
        height: 65px;
    }

    p, #editable, strong{
        width: 500px;
        height: auto;
    }

    #editable{
        border-color: #000000a2;
    }

    #btPost{
        width: 500px;
    }
    
    button{
        width: 280px;
        height: 35px;
        gap: 15px;
    }

}

@media (max-width: 575.98px){

    h1, h2{
    font-size: 10.5px;
}

.custom-input, input {
    width: 240px;
}

button, .custom-button, .google-button {
    width: 240px;
}

#inputComentarios{
    width: 300px;
    height: 65px;
}

p, #editable, strong{
    width: 300px;
    height: auto;
}

#editable{
    border-color: #000000a2;
}

#btPost{
    width: 300px;
}

button{
    width: 240px;
    height: 35px;
    gap: 15px;
}
}