.about-description {
    line-height: 1.5;
    font-size: 20px;
}

.platform-container {
    position: relative;
    bottom: 5px;
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

.platform {
    padding: 20px;
    font: inherit;
    font-weight: 500;
    border: 2px solid black;
    border-radius: 5px;
    margin: 0 0 15px 5px;
    box-shadow: 5px 5px grey ;
    width: 40%;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.platform:hover {
    background-color: rgb(119, 255, 119);
}

.platform:active {
    box-shadow: none;
    text-decoration: none;
}

.platform:visited {
    text-decoration: none;
}


.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  width: 100%;
  font: inherit;
  border-radius: 2px;
  font-weight: bold;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.active, .accordion:hover {
  background-color: rgb(119, 255, 119); 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

h1 {
    text-align: center;
}

.answer {
    margin-top: 5px;
    line-height: 2.5;
}

.bi {
    position: relative;
    right: 0px;
}

.download-icon {
    margin: auto 5px;
    width: 30px;
}