.app_container {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1f2833;
}

.app_card {
  margin: 40px auto;
  width: 250px;
  height: 250px;
  border: none;
  background-color: #1f2833;
  border-radius: 20px;
  box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, 0.30), -5px -5px 30px 7px rgba(0, 0, 0, 0.30);
  cursor: pointer;
  transition: 0.4s;
}

.app_card .app_card_image {
  width: inherit;
  height: inherit;
  border-radius: 40px;
}

.app_card .app_card_image img {
  width: inherit;
  height: inherit;
  border: none;
  border-radius: 20px;
  object-fit: cover;
}

#aplikacijaIme {
  padding: 10px;
  text-align: center;
  font: 700 1rem/1.5rem "Nunito Sans", sans-serif !important;
  border: none;
  height: 40px;
}

.app_card:hover {
  border: none;
  transform: scale(0.95, 0.95);
  box-shadow: 5px 5px 30px 15px rgba(0, 0, 0, 0.25), -5px -5px 30px 15px rgba(0, 0, 0, 0.22);
}

@media all and (max-width: 500px) {
  .app_card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}