.imageLinks ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    column-gap: 1rem;
}
/*.imageLinks li {
    overflow: hidden;*/ /*SO THAT ON HOVER THE IMAGE DOESN'T BECOME LARGER THAN ITS PARENT*/
/*    border-radius: 50% 50% 0 0;
}*/
.imageLinks li:focus-within {
    outline: 2px solid var(--comp2);
}
.imageLinks li {
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, .5);
    position: relative;
    width: 15vw;
    height: 15vw;
}
.imageLinks span {
    color: black;
    display: block;
    position: absolute;
    bottom: 45%;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, .6);
}
.imageLinks a {
    display: block;
    margin-bottom: 1.2rem;
    width: 100%;
    height: 100%;
}
.imageLinks img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.imageLinks li:hover img {
    scale: 110%;
    transition: .3s;
}
@media only screen and (max-width: 1245px) {
    .imageLinks li {
        width: 20vw;
        height: 20vw;
    }    
}
@media only screen and (max-width: 935px) {
    .imageLinks li {
        width: 25vw;
        height: 25vw;
    }    
}
@media only screen and (max-width: 800px) {
    .imageLinks ul {
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }
    .imageLinks li {
        width: 50vw;
        height: 50vw;
    }
}
@media only screen and (max-width: 550px) {
    .imageLinks ul {
        row-gap: 1.5rem;
        grid-template-columns: 1fr;
        width: 70%;
        margin: 0 auto;
    }
}