.collab-card-container{
    margin-bottom: 3rem;
    text-align: justify;
    color: #00365F;
}

.collab-card-container h2{
    text-align: center;
    color: #1f3b1a;
}

.card-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 3rem;
}

.card-container img{
    width: 50%;
    margin-bottom: 2rem;
}

.card-container .card{
    box-shadow: 0px 2px 2px gray;
    padding: 2rem;
    width: 25rem;
    height: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: .2px solid #DFAB00;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover{
    transform: translateY(-5px);
}

@media screen and (width <= 1200px){
    .card-container p{
        font-size: 1.2rem;
    }

    .card-container{
        justify-content: space-evenly;
    }

    .card-container .card{
        width: 22vw;
    }
}

@media screen and (width <= 1200px){
    .card-container{
        flex-wrap: wrap;
    }

    .card-container p{
        font-size: 1.5rem;
    }

    .card-container .card{
        margin-bottom: 2rem;
        width: 100%;
    }

    .card-container .card img{
        width: 20rem;
    }
}

