h1{
    color:white;
}

.card{
    display:grid;
    margin: auto;
    margin-top: 3rem;
    border-radius: 39px 0px 39px 0px;
    border: 1.5px solid #333;
    min-height: 550px;
    overflow: auto;
    transition: all 0.3s ease;
}
.card:hover{
    box-shadow: 0 0 10px #FF5C00, 0 0 40px #FF5C00,
    0 0 80px #FF5C00;
    transform: translateY(-4px);
    border-color: #FF5C00;
}
.card-img-top{
    display: block;
    width: 225px;
    height: auto;
    margin:auto;
    padding: 15px;
}
.card .card-header {
    background-color: transparent;
    border-bottom: 1px solid #333;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
}
.card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card .card-body .desc {
    min-height: 50px;
}
.card .card-body .card-title {
    font-family: 'Quicksand', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.3px;
    color: #333;
    text-align: center;
    margin: 0;
}
.btn:hover{
    box-shadow: 0 0 10px #33ff14, 0 0 40px #33ff14,
    0 0 80px #33ff14;
}

@media (max-width: 768px) {
    .card {
        min-height: 400px;
        margin-top: 2rem;
    }
    .card-img-top {
        width: 150px;
    }
}
