.dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.widget {
    height: 15rem;
    aspect-ratio: 1/1;
    background: var(--primary);
    color: var(--accent);
    border-width: 0.25rem;
    border-color: var(--primary);
    border-style: outset;
    border-radius: 1.5rem;
    padding: 2rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
}

.widget h2 {
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.75rem;
}

.widget:hover {
    border-color: color-mix(in srgb, var(--primary), white 15%);
    background: color-mix(in srgb, var(--primary), white 15%);
}

.widget:active {
    border-style: inset;
    border-color:color-mix(in srgb, var(--primary), white 15%);
    background: color-mix(in srgb, var(--primary), white 15%);
}

.widget .icon {
    color: var(--accent);
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

.widget .icon svg {
    height: 100%;
    width: 100%;
}