.box {
    display: flex;
    width: 600px;
    padding: 20px;
    background-color: #1E1F28;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.title {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.view-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    color: black;
}

.view-btn a {
    text-decoration: none;
    color: black;
}
.view-btn:hover {
    background-color: #0056b3;
}

.right-section {
    flex: 2;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.description {
    font-size: 16px;
    color: white;
    line-height: 1.6;
}

.flex-programming {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
}