/*no margin on top*/
#presentation {
  margin-top: 0;
}

/*container of the icons*/
#iconContainer {
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.8em;
  padding: 0;
  width: 35%;
}

/*styling of icon item*/
.icon {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1em;
  padding: 15px;
  margin-top: 5px;
  width: 4%;
  margin-right: 35px;
  margin-left: 35px;
  transition: 200ms;
}

/*styling of icon item on hover*/
.icon:hover {
  cursor: pointer;
  width: 5%;
  transition: 200ms;
  background-color: rgba(255, 255, 255, 0.8);
}

/*container of text*/
.textContainer {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.7em;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  padding: 10px;
}

/*add padding to text and set margin to 0*/
.paragraph {
  margin: 0;
  padding-bottom: 4px;
  padding-top: 4px;
}

/*add padding between li elements*/
li {
  padding-top: 5px;
}

/*media screen*/
@media screen and (max-width: 850px) {
  #iconContainer {
    display: none;
  }

  #iconTitle {
    display: none;
  }
}