body {
  /* background-color: #6a6a6a;  */
  color: white;
  font-family: 'Lexend', sans-serif;
  margin: 0;
  padding: 0;
}
  a {
    color: white;
    text-decoration: none;
  }

  a:hover {
    color:#a5a5a5;
  }

    header {
    background-color: #777; 
    color: white;
  }

  h1 {
    margin-top: 0;
    padding-top: 0;
    text-align: center;
    color: white;
  }

  .introduction{
    text-align: justify; 
    margin: 10px;
  }

  .month {
    padding-top: 5px;
  }

  h3 {
   text-align: center;
   padding: 10px;
  }
/* COLLAPSIBLE SECTION CSS:BEGINS */
.collapsible {
  /* background-color: #2b2b2b; */
  background-image: linear-gradient(#4f4f4f, #383838);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.active, .collapsible:hover {
  background-color: #4f4f4f;

}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #383838;
  text-align: justify;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;

}
/* COLLAPSIBLE SECTION CSS:ENDS */

/* HOVER OVER FOR TEXT TO APPEAR: BEGIN */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #6a6a6a;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: rgb(141, 141, 141);
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;

  /* Position the tooltip */
  position: absolute;
  z-index: auto;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  border-bottom: 2px solid #6a6a6a;
}
/* HOVER OVER FOR TEXT TO APPEAR: END */

.readMore {
  color: rgb(101, 101, 101);
}

footer {
  background-color: #777;
  text-align: right;
}

