﻿@media (max-width: 768px) {
    .flex {
        display: inherit !important;
    }
}

.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 8px 0px;
    border-radius: 20px;
    font-family: "Roboto Sans Serif";
    font-weight: 500;
}
.card-text {
    font-size: 16px;
    font-family: "Roboto Sans Serif";
    font-weight: 500;
}
.card-title {
    font-size: 20px;
    font-family: "Roboto Sans Serif";
    font-weight: 500;
}
.card-body {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-family: "Roboto Sans Serif";
    font-weight: 500;
}

.flex {
    display: flex;
}

.stretch {
    align-content: stretch;
    align-items: stretch;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container .card {
    padding: 2px 16px;
}
