.table tr {
    transition: background 0.2s ease-in;
    padding-top: 5em;
  }
  
  .table tr:nth-child(odd) {
    background: silver;
  }
  
  .table tr:hover {
    background: rgb(189, 234, 248);
    cursor: pointer;
  }
 
  div#loading {
    width: 100px;
    height: 300px;
    display: none;
    margin:0 auto;
    background: url(/static/loadingimage.gif) no-repeat;
    }

    .custom-select {
      width: 100%;
      height:max-content;
      min-width:19ch;
      max-width: 50ch;
      border-radius: 0.5em 0.5em;
      padding: 0.1em 0.1em 0.1em 0.5em;
      font-size:100%;
      cursor: pointer;
      line-height:normal;
      background-color: #fff;
      }

  .highlight 
  {
      background-color: rgb(106, 105, 112);
      color:rgb(252, 250, 248)
  }
  .hero-section {
    height: 50vh;
    /* IE11 doesn't like min-height */
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0.5em;
    background-color: rgba(216, 218, 226, 0.6);
    background-image: linear-gradient(rgba(2, 2, 2, 0.0), rgba(97, 95, 95, 0.0)), url(/static/incoming_axons.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size:cover;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .users-section {
    height: 100%;
    /* IE11 doesn't like min-height */
    width: 100%;
    margin: 0;
    margin-bottom: 1em;
    padding: 3em 0.8em 8em;
    border-radius: 0.5em;
    background-color: rgba(247, 247, 247, 0.836);
    background-image: linear-gradient(rgba(248, 247, 247, 0.719), rgba(97, 95, 95, 0.733)), url(/static/field_of_myelin.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size:cover;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .user-section {
    height:fit-content;
    /* IE11 doesn't like min-height */
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0.5em;
    background-color: rgba(216, 218, 226, 0.6);
    background-image: linear-gradient(rgba(2, 2, 2, 0.0), rgba(97, 95, 95, 0.0)), url(/static/l2-neurons.jpg);
    background-position: top;
    background-repeat:repeat-y;
    background-size:100% 70%;
    position: relative;
    display:flex;
    flex-direction: column;
  }
  
  
  .hero-text {
    color: white;
    margin: auto;
    background-color: rgba(7, 7, 7, 0.733);
    padding: 1em 1em 1em;
  }

  .user-text {
    color: rgb(255, 255, 255);
    margin-top: 80px;
    margin-bottom: 80px;
    background-color: rgba(26, 25, 25, 0.8);
    padding: 0.2em 1em 0.2em 0.5em;
    width:100%;
  }
  
  @media screen and (max-width: 580px) {
    .hero-text p {
      white-space: pre-line;
    }
  }

.intro-section,
.cards-section {
  max-width: 100%;
}

.intro-section {
  padding: 1em 2em 2em;
}

.about p {
  max-width: 95%;
  margin: auto;
}

.boxed-form {
  background-color: rgba(162, 163, 168, 0.6);
  border-radius: 0.2em;
}

.myFloat_Right {
  float: right;
}

.card-footer {
  height: 5em;
  width:100%;
  background-image: linear-gradient(rgba(248, 247, 247, 0.815), rgba(97, 95, 95, 0.021)), url(/static/colorful_em.jpg);
  background-size: cover;
}