.csb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}
.csb-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
	background-color: snow;
	color: tomato;
}
.csb-box:hover {
    background-color: #fff;
}
