body {
    background-image: url('images/background.png');
    background-repeat: repeat;
    background-size: auto;
}

.page {
    background-color: rgba(47, 79, 79, 0.85);
    width: 80%;
    margin: 0 auto;
}

.banner {
    padding: 0 20px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    font-size: 100px;
    background-color: rgba(61, 62, 139, 0.5);
}

.midbar {
    height: 50px;
    padding: 0 0 0 20px;
    background-color: rgba(32, 25, 133, 0.65);
    flex: 1;
    display: flex;
    align-items: center;
}

.title-text {
    flex: 1;
    text-align: center;
}

.titlefont {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: white;
    width: 50%;
    margin: 0 auto;
}

.sectionfont {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: white;
    font-size: 26px;
}

.textfont {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: white;
    font-size: 20px;
}

.shadow {
    text-shadow:
        -2px -2px 0 #2f2f2f,
        2px -2px 0 #2f2f2f,
        -2px 2px 0 #2f2f2f,
        2px 2px 0 #2f2f2f,
        -2px 0px 0 #2f2f2f,
        2px 0px 0 #2f2f2f,
        0px -2px 0 #2f2f2f,
        0px 2px 0 #2f2f2f;
}

.card-container {
    padding: 12px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    border: 4px solid #000;
    padding: 12px;
    margin: 12px;
    height: 128px;
    width: 400px;
    display: flex;
    align-items: stretch;
    text-decoration: none;
    border-radius: 10px;

    background-repeat: repeat;
    background-size: auto;
}

.card:hover {
    border: 4px solid white;
}

.card-img {
    width: 100%;
    height: auto;
    border: 2px solid black;
    border-radius: 4px;
}

.card-title {
    margin: 8px 0 4px;
}

.card-desc {
    font-size: 14px;
}

.card-left {
    aspect-ratio: 1 / 1;
    height: 100%;
    flex: 0 0 auto;
}

.card-right {
    flex: 1;
    padding-left: 12px;
}