.title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.title:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
}

.box-container {
    width: 90%;
    margin: 0 auto;
}


.box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.box:hover {
    /* background-color: #007bff; */
    color: #fff;
    transform: scale(1.05);
}


.row-content {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}
