.tt_title {
    margin-top: 0;
    margin-bottom: 3%;
    font-size: 20pt;
    font-family: "Vollda", sans-serif;
    color: var(--text-color-primary);
}

.tt_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2%;
}

.tt_card {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--text-color-primary);
    transition: transform 0.2s;
}

.tt_card img {
    width: 85%;
    border-radius: 8px;
}

.tt_card p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14pt;
}

.tt_card:hover {
    transform: scale(1.05);
    color: var(--color-highlight);
}

@media (min-width: 1920px) {
    .tt_title {
        margin-bottom: 2%;
    }

    .tt_card img {
        width: 80%
    }
}