body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fafaff;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    margin: 10px;
    gap: 2.5px
}

a {
    color: black;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.icon {
    /* background-color: white; */
    /* background-size: 70%; */
    /* background-position: center; */
    width: 60px;
    aspect-ratio: 1;
    border-radius: 7.5px;
    box-shadow: 0 0 5px 2px #eee;
    position: relative;
}

.icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 5px;
    background-position: center;
    background-size: 100%;
    overflow: hidden;
    background-image: var(--url);
    background-repeat: no-repeat;
}

.app-name {
    text-align: center;
    font-size: 12.5px;
    margin-top: 5px;
}