.boxes-Catalog {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.text-box-catalog {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: aliceblue;
    width: 250px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 1.5rem;
    margin-top: 5vh;
    color: blue;
}

.text-box-catalog:active {
    background-color: #4C8BF5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.icon-catalog {
    position: absolute;
    left: 0%;
    top: 90%;
    transform: translateY(-50%);
}
@media (max-width : 768px) {
    .boxes-Catalog {
        display: flex;
        flex-direction: column;
    }
}