
* {
    margin: 0;
    padding: 0;
}

.main-section {
    padding-top: 170px;
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    gap: 20px;
    position: relative;
}

.main-section h1 {
    font-size: 2.5rem;
    color: navy;
    font-weight: bold;
    text-align: center;
}

.table-container {
    width: 100%;
    padding: 10px;
}

.main-section table {
    width: 100%;
    height: auto;
    background-color: rgb(223, 219, 219);
    border: 2px solid aqua;
}

.main-section table thead {
    text-align: left;
    background-color: orange;
}

.main-section tr {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.main-section th {
    font-size: 2rem;
    color: navy;
}

.main-section td h2 {
    font-size: 1.7rem;
    color: darkgreen;
    font-weight: bold;
}

.main-section td article {
    font-size: 1.4rem;
    margin-top: 20px;
}

.main-section td,
.main-section th {
    padding: 0 10px;
    width: 50%;
}

.tbody-tr:hover  .program-image-box {
    transform: translateX(20px) scale(0.9);
}

.program-image-box {
    width: 90%;
    height: 300px;
    transition: all 0.3s;
}

.program-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    object-position: center;
}

@media screen and (max-width:768px) {
    .main-section h1 {
        font-size: 2rem;
    }

    .program-image-box {
        height: 200px;
    }

    .main-section th {
        font-size: 1.6rem;
    }

    .main-section td h2 {
        font-size: 1.3rem;
        color: darkgreen;
        font-weight: bold;
    }

    .main-section td article {
        font-size: 1rem;
        margin-top: 20px;
    }
}