﻿.hex-title {
    font-size: 22px;
    font-weight: bold;
    color: #202a44;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.hex-row {
    margin-bottom: 40px;
}

.hex {
    width: 100%;
    aspect-ratio: 1 / 1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

    .hex:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.hex-row a {
    color: white
}

    /* Color Themes */
    .hex.red {
        background-color: #f2dd66;
    }

    .hex.green {
        background-color: #49887b;
    }

    .hex.blue {
        background-color: #1976d2;
    }

    .hex.gray {
        background-color: #424242;
    }

@media (max-width: 768px) {
    .hex {
        width: 100px;
        height: 86px;
        font-size: 12px;
    }
}
