div.imageLink {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--eerieBlack);

    transition: var(--normalTransition);
}

div.imageLink > img {
    display: none;
}

div.imageLink > a {
    margin: 0;
    font-size: 30px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    background-color: var(--transparentGray);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 100%;
}

div.imageLink > a.active {
    background-color: transparent;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0px 0px 10px #000000;
}

div.imageLink:hover {
    transform: scale(var(--scaleFactor));
}