.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 47vh;
  margin-top: 60px;
  background-color: #d0d0df;
}

.card-table {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.info-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 270px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease-in-out;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #333;
}
h3, .centered-linux-box{
  text-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.centered-div-box{
  text-align: center;
  display: inline-block;
  margin:0 auto;
}
.centered-text-margin{
  text-align: center;
  display: inline-block;
  margin-left: 60px;
  margin-right: 60px;
}
.text-margin{
  margin-left: 60px;
  margin-right: 60px;
}
.marketplace-img{
  width: 100%;
  max-height: 120px; 
  object-fit: contain; 
  margin: 10px 0;
  display: block;
}

.info-card p {
  margin: 6px 0 12px 0;
  color: #555;
  font-size: 0.95em;
}

.info-card a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .card-table {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 90%;
    max-width: 400px;
  }

  .cards {
    padding: 40px 10px;
  }
}
