html {
  font-family: 'Montserrat', Arial, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}


li{
  cursor: pointer;
  margin-top: 5px;
  font-weight: 600;
  width: fit-content;

}

h2
{
  font-size: 27px;
  font-weight: 600;
  
}

.disease /*menu*/
{
    background-color: rgb(19, 111, 128, .8);
    box-shadow: 1px 1px 5px white;
    color: white;
    height: 600px;
    width: 20%;
    float: left;
    position: relative;
    z-index: 1;
}

.description /*main*/
{
    background-color: rgb(13, 145, 168, .8);
    color: white;
    padding: 0 10px;
    height: 600px;
    width: 80%;
    float: left;
    position: relative;
}

.context{
    
    font-size: 1em;
    font-weight: 600;
}

  @media only screen and (max-width: 600px) {
    /* For mobile phones: */
    .disease, .description {
      background-color: rgb(13, 145, 168, .8);
      width: 100%;
      margin-left: 0;
      margin-top: 5px;
      height: fit-content;
      position:relative;
    }
    footer{
      margin-top: 5px;
    }
  }