.investment {
  max-width: 300px;
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 8px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.selected-investment {
  padding: 4px;
  background: black;
  transform: scale(1.05);
}

#investmentsContent {
  font-size: 1.3em;
}
/* // Medium devices (tablets, less than 992px)*/
@media (max-width: 992px) {
  .investment {
    max-width: 200px;
  }
}
/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 768px) {

  .selected-investment {
    padding: 2px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
  .investment {
    max-width: 150px;
  }
  .selected-investment {
    padding: 2px;
  }
}