#services {
    position: relative;
    text-align: center;

    ul {
        display: flex;
        flex-wrap: wrap;
        list-style-type: none;
        justify-content: space-around;
        padding: 2rem 0;
        column-gap: 1rem;
        row-gap: 1.5rem;

        li {
            img {
                width: 100%;
                height: 100%;
            }

            color: var(--text-light-1);
            text-shadow: black 0 0 5px;

            box-shadow: black 0px 0px 12px 2px;
            height: 220px;
            aspect-ratio: 1.0;
            text-align: center;
            transition: transform 70ms;

            font-size: 1.2em;

            position: relative;

            &:hover {
                transform: scale(1.2);
            }

            div {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }
    }

    a {
        color: var(--text-light-1);
        padding: 1em;
        margin: 1rem;
    }
}
