@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700;900&display=swap');
* {
    margin: 0px;
    padding: 0px;
    font-family: 'Red Hat Display', sans-serif;
}

.bg {
    width: 100%;
    z-index: 0;
}

#cards {
    background-color: #dbe5e6;
    padding: 30px 0px;
    color: rgb(48, 48, 48);
}

.title {
    text-align: center;
    padding: 25px 0px;
}

.title p {
    font-size: 18px;
}

.card {
    margin: 20px 20px;
    box-shadow: 0 0 20px 7px rgba(0, 0, 0, 0.15);
    transition: all .3s ease-in-out;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(232, 232, 232, 1) 100%);
    border-radius: 20px !important;
}

.card:hover {
    box-shadow: 0 0 20px 7px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.card-img-top {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.card-title {
    font-weight: 700;
}

.btn-learn {
    background-color: tomato;
    border: none;
    border-radius: 30px;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 80%;
    margin: 10px 0px;
}
