body {
    background: linear-gradient(90deg, rgba(193,127,34,1) 0%, rgba(55,131,128,1) 50%, rgba(0,78,255,1) 100%);
    padding: 10px;
}

.title {
    color: white;
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6 {
    position: relative;
    width: 100%;
    min-height: 1px;
    flex: 0 0 50%;
    max-width: 50%;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: white;
    background-clip: border-box;
    margin: 5px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,.125);
    color: black;
    transition: 0.5s;
}

.card-blur:hover {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    color: white;
    transition: .3s all linear;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

.blur {
    position: relative;
    overflow: hidden;
    transition: all .5s linear;
    background-color: transparent;
}

.blur .card-blur {
    transition: all .5s linear;
}

a.card-link {
    text-decoration: none;
}

.d-flex {
    position: flex;
}

.justify-content-around {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}