#cardContainer{
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:30px
}
.cards {
      border-radius: 20px;
    min-width: 250px;
    min-height: 200px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cards a{
    cursor: pointer;
    text-decoration: none;
    color: hsl(0, 0%, 96%);
}
.cards img {
  
    border-radius: 20px;
    width: 200px;
    height: 130px;
    margin-top: 20px;
}

.cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.25);
}

.light-mode .cards:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.light-mode .cards a{
    color: hsl(0, 0%, 6%);;
}