.trigger {
    background: var(--alt);
    border-radius: .5em;
    text-align: left;
    padding-left: 0.25em;
}
.image-holder {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    margin-bottom: 1em;
}
.image-box {
    text-align: center;
    padding: .5em;
    width: 20%;
    margin: 0;
}
.nail-img {
    width: 100%;
}
.delete-img {
    margin: 1em;
    border: solid .1em var(--font);
    background: var(--rosa);
    border-radius: .5em;
}

/* --------- MOBILE ---------- */
@media screen and (max-width: 800) {
    .image-box {
        width: 100%;
    }
    .trigger {
        font-size: 3em;
    }
    .delete-img {
        font-size: 2em;
    }
    .image-box {
        margin-bottom: 3em;
    }
}

@media screen and (max-width: 600px) {
    .image-box {
        width: 100%;
    }
    .trigger {
        font-size: 2em;
    }
    .delete-img {
        font-size: 2em;
    }
    .image-box {
        margin-bottom: 3em;
    }
    .delete-img {
        margin: 1em;
        border: solid .1em var(--font);
        background: var(--rosa);
        border-radius: .5em;
        font-size: 1em;
    }
    .categorylink{
        font-size: 1.5em;
    }
    .categorylink:hover{
        background-color: transparent !important;
    }
}