footer {
    background-color: lightsteelblue;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 3%;
  }
  
  footer div {
    margin: 0 10px 0 10px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.4rem;
  }
  
  footer #usuario {
    width: 20%;
  }
  
  footer #info {
    font-style: italic;
    width: 40%;
  }
  
  /* footer #alquiler {
    width: 20%;
  } */
  
  footer #contacto {
    text-align: right;
    width: 40%;
  }

  @media screen and (max-width: 40rem) {
    footer #info {
      width: 30%;
    }

    footer #contacto {
      text-align: right;
      width: 30%;
    }
    footer #contacto span{
      visibility: hidden;
    }
  }
  