body {
    background: #E8F1F3;
    font-family: Arial, Helvetica, sans-serif;
}

.contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5% auto;  
}

.logoPrincipal {
    width: 45%;
  
}

.formularioHomeDiv {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 20%;
    height: 75%;
    background-color: white;
    padding: 1%;
    border-radius: 30px;
    margin-left: -15%;
}

input {
    width: 65%;
    height: 35px;
    border-radius: 30px;
    border: none;
    background: #E8F1F3;
    margin-bottom: 4%;
    padding: 0.5%; 
}

button {
    margin-bottom: 5%;
    border-radius: 30px;
    border: none;
    width: 65%;
    height: 35px;
    background: #17554B;
    color: #E8F1F3;
    font-size: 100%;
}

.botonGoogle {
    background: #E8F1F3;
    background-image: url(/assets/logoGoogle.93b4f881.png);
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: 8%;
    margin-bottom: 4%;
    color: #17554B;
}

.textErrorSingIn {
    color: red;
}

.separator{
text-align: center;
margin: 2% 0; 
}

.lineRight, .lineLeft {
    width: 6em;
    margin: 0 1em; /* Espaciado horizontal entre los elementos lineRight y lineLeft */
    display: inline-block;
  }

.letra{
    display: inline-block;
    font-size: 18px;
}

.sectionHeaderHome{
    display: flex;
    justify-content: space-between;
    padding: 2% 5% 0 7%;
}

.logoHome{
    width: 10%;
}

.articleHome{
    display: flex;
    justify-content: center;
    margin: 5% 0 0 5%;
}

.sectionOne{
    display: flex;
    flex-direction: column;
    width: 40%;
    margin-right: 5%;
}

.sectionTwo{
    width: 60%;
    margin-right: 20%;
}

.post{
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 2% 2% 1% 2%;
    width: 120%;
    border-radius: 20px;
}

.textarea{
    resize: none;
    border: none;
    border-radius: 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    padding: 5%;
}

.divForm{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2%;
}
.buttonExit{
    background: #bbdde4;
    color: #17554B;
    margin-left: 80%;
}
.buttonPost{
    width: 30%;
}

.inputImagen{
  border-radius: 50%;
}

.botonSectionOnePaginaPrincipal {
    background-image: url(/assets/home.327dfedc.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 15px 5px;
}

.botonSectionOneSalidasRecreativas {
    background-image: url(/assets/routes.aacb4d41.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 15px 5px;
}

.botonSectionOneEntrenamientos {
    background-image: url(/assets/training.85b55cf3.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 15px 5px;
}

.botonSectionOneMecanica {
    background-image: url(/assets/mechanics.e1190342.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 15px 5px;
}

.botonSectionOneVidaSana {
    background-image: url(/assets/healthylife.f04e7a62.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 15px 5px;
}

.iconoForm{
    width: 2rem;
    margin: 5%;
}

/* Invisible texto */
figcaption {
    display: none;
    font-size: 10px;
    color: #17554B;
}

/* Visible texto */
.insert:hover>figcaption {
    display: block;
}

.routes:hover>figcaption {
    display: block;
}

.training:hover>figcaption {
    display: block;
}

.mechanics:hover>figcaption {
    display: block;
}

.healthyLife:hover>figcaption {
    display: block;
}

.postFeed{
    background: #fff;
    padding: 2%;
    border-radius: 20px;
    text-align: center;
    margin: 7% 0 15% 0;
    width: 120%;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #bbb6e1;
    color: #1A0D25 ;
    font-size: 60%;
}

.userHeader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5% 0 2%;
}

.dateBox{
    display: flex;
    text-align: end;
 }

  .userPhoto {
    width: 10%;
    border-radius: 50%; 
    margin-right: 3%;
  }

.name{
    margin-left: -40%
}

.modal {
    display: none;
}

/* Media Query para dispositivos con pantalla de hasta 768px */
@media screen and (max-width: 768px) {
    .contenedor{
        flex-direction: column;
        justify-content: center;
        margin: 5%;
    }

    .logoHomeDiv{
        margin-left: 35%;
    }

    .formularioHomeDiv {
      width: 85%; /* Reducir el ancho para adaptarse mejor a pantallas más pequeñas */
      height: 80%;
      margin: 5%;
    }

    .separator{
        align-items: center;
    }

    .lineRight, .lineLeft {
        width: 4em;
        margin: 0 1em; /* Espaciado horizontal entre los elementos lineRight y lineLeft */
        display: inline-block;
      }
     button {
        font-size: 70%;
        align-items: center;
     }

     .sectionHeaderHome{
      flex-direction: column;
      align-items: center;
      padding: 2% 0;
     }

     .logoHome {
        width: 20%; 
      }

      .articleHome{
        flex-direction: column;
      }

      .sectionOne{
        display: flex;
        width: 80%;
        margin-left: 20%;
    }
      .sectionTwo{
        margin-left: 10%;
      }
      .iconoForm{
        width: 1rem;
        margin: 2%;
      }
      .userHeader{
        font-size: 65%;
    }
    .buttonPost, .buttonExit{
        width: 30%;
    }
      footer {
        display: flex;
        flex-direction: column;
       align-items: center;

        }
  }

