.container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.container div {
    width: 100px;
    height: 90px;
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    transition: transform 0.05s ease, box-shadow 0.05s ease;
}

/* The animation. */
.animate {
    transform: scale(0.92);
    border: 2px solid var(--white);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
}

.container div h2 {
    font-weight: 750;
    font-size: 29px;
    color: var(--white);
}

.container div h3 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}