body {
    background: #F5F5F5;
    color: #212529;
}

.navbar {
    background: #fff;
}

.nav-link {
    color: #212529 !important;
}


.card {

    .card-title {
        text-align: center;
    }

    width: 18rem;
    border-radius: 10px;
    background: #FFF;
    border: none;
    margin: 10px 0;
    transition: all .3s ease-in-out;

    &:hover {
        transform: translateY(-5px);
        transition: all .3s ease-in-out;
        box-shadow: 0 0 2px 0 rgba(33, 37, 41, 0.25);
    }
}

.btn {
    border: none;
}

.btn-primary {
    background: #3674FF;
}

.btn-success {
    background: #0BBD5C;
}