.cardHolder{
    height: 100vh;
    width: 50%;
    position: absolute;
    left: 25%;
    border: solid 0;
    overflow-x: hidden;
    overflow-y: scroll;
}
.card {
    height: 50vh;
    width: 75%;
    position: relative;
    margin-left: 15%;
    background: #114856;
    border-radius: 25px;
}
@media screen and (max-width: 600px) {
    .cardHolder {
        width: 100%;
        left: 0;
    }
    .card {
        margin-left: 5%;
        width: 90%;

    }

}
.card h1 {
    font-size: 2rem;
    color: var(--primtxt);
    margin-left: 4%;
    margin-top: 5%;
}
.card p {
    font-size: 1rem;
    color: white;
    margin-left: 4%;
    margin-top: 5%;
}

.cardActionBtn {
    bottom: 0;
    position: absolute;
    height: 10%;
    width: 100%;
}
.cardActionBtn button {
    background: #196C81;
    font-size: 1.4rem;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    border-radius: 15px;
    border: solid 0;
}
