body{
    background: linear-gradient(135deg,#a7b2e1, #050505, #a7b2e1);
    font-family: sans-serif;
}

.custom-card {
    max-width: 320px;
    background-color: #fff;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 30px 5px rgb(119, 118, 118) ;
    }

    .custom-card:hover {
        transform: scale(1.05);
        }

        .custom-card h3 {
            color: #333;
            }
            .custom-card p {
            color: #555;
            }
            .btn{
            font-weight: bold;
            margin-bottom: 20px;
            }












