.card-container {
    margin-top: 10vh;
    margin-bottom: 10vh;
    display: flex;
    flex-wrap: wrap;
    gap: 80px 300px;
    align-items: center;
    align-content: center;
    justify-content: center;

}

.card {
    width: 300px;
    height: 350px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    z-index: 99999;
    box-shadow: 0px 0px 8px 8px rgba(63, 63, 63, 0.3);
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 8px 8px rgba(46, 46, 46, 0.3);

}

.card img {
    transition: 0.2s ease-out;
    
    margin: 100px 100px;

}



.card-content {
    padding: 0px;
    line-height: normal;
}

.card-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.001px;
    color: #555;
    text-align: center;

}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: -100px 0px;
    background: #36065c;
    color: white;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    line-height: 30px;
}

.card:hover.card img {
    margin: 50px 100px;

}

.card:hover .card-title {
    margin: -60px 00px;

}


.card:hover .card-description {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin: 80px 10px;
}