/* ==== Highest Honors Graduates Page ==== */

/* Header */
.card-header {
    background-color: black;
    color: white;
    text-align: center;
}
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: auto;
    width: 100%; /* Must add card width when using margin:auto to center it */
}
.card img {
    margin: 0 auto;
}
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
p span {
    font-size: 170%;
}
#imgFiller {
    border-bottom: 1px solid #d9d9d9;
}
.jumbotron {
    border-radius: 8px;
    background-color: #003366;
    color: white !important;
    padding: 5px;
}
.jumbotron h2 {
    color: #fff !important;
}
#txt-mod {
    color: #003366;
    margin-top: 0;
    padding-top: 0;
}
#helpus {
    color: #fff;
    background-color: #666666;
    padding: .5em;
    margin: 0;
}

/* Responsive layout - one column instead of two */
@media (max-width: 740px) {
    .flex-container {
        flex-direction: column;
        max-width: 100%; /* fit viewport 100% in responsive view */
        margin: auto;
        margin-bottom: 10px;
    }
    p span {
        font-size: medium;
    }
}