/* Parent Wrapper */

.hexagon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 20px;
    height: auto;
}


/* Hexagon Shape */

.hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: blueviolet;
    color: white;
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    margin: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}


/* Hover Effect */

.hexagon:hover {
    transform: scale(1.1);
    background-color: darkviolet;
}


/* Link Inside Hexagon */

.hexagon a {
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}