#tools-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 1em;
    margin-top: 2em;
}

.tool {
    display: block;
    width: 100%;

    border: 2px solid #aaaaaa30;
    background-color: #aaaaaa10;
    padding: 1em;
    border-radius: 1em;
    transition: transform 0.2s;
}
.tool.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tool:not(.disabled):hover {
    transform: translateY(-4px);
}

.tool h2 {
    margin-bottom: 0.25em;
}
