#moreinfoContainerCard {
    padding-bottom: 30px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    justify-content: space-between;
    gap: 25px;
}

.cardThumbnail {
    border-radius: 5px 5px 0px 0px;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.02);

    height: 250px;
}

.card {
    --shine-deg: 45deg;
    position: relative;
    overflow: hidden;

    width: min(280px, 90%);
    border-radius: 5px;
    height: auto;
    flex: 1 1 250px;
    text-decoration: none;
    cursor: pointer;
    
    background-color: rgba(255, 255, 255, 0.02);

    border: 1px solid rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    background-position: -100% 0, 0 0;

    background-image: linear-gradient(
        var(--shine-deg),
        transparent 20%,
        transparent 40%,
        rgb(68, 68, 68, 0.4) 50%,
        rgb(68, 68, 68, 0.4) 55%,
        transparent 70%,
        transparent 100%
    );

    background-size: 250% 250%, 100% 100%;
    transition: background-position 0s ease;

    animation-name: cardBefore;
    animation-duration: 0.5s;
}

.card:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);

    animation-name: cardHover;
    animation-duration: 0.5s;

    background-position: 200%0, 0 0;
    transition-duration: 1s;
}

.cardTitle {
    margin-left: 20px;
    margin-right: 20px;
}

.cardDescription {
    margin-top: -10px;
    margin-left: 20px;
    margin-right: 20px;
}

.cardTags {
    display: flex;
    flex-wrap: wrap;
    bottom: 0;
    gap: 5px;

    height: auto;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10000px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    color: white ;
    font-weight: 200;
    font-size: 14px;
    padding: 2px 10px;
    margin: 0;
}

@keyframes cardHover {
  from {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(0px);
    }
  to {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    }
}

@keyframes cardBefore {
  from {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    }
  to {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(0px);
    }
}