h1 {
    text-align: center;
    font-family: "Kanit";
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
}

#modules-sec1 {
    width: 80%;
    display: flex;
    justify-content: center;
    margin: 50px 0 20% 0;
    flex-wrap: wrap;
    /* background-color: blue; */
}

@media (max-width: 1800px){
    #modules-sec1 {
        width: 90%;
        display: flex;
        justify-content: center;
        margin: 50px 0 20% 0;
        flex-wrap: wrap;
    }
}

#contentp {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    line-height: 2;
}

#content h5 {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    line-height: 2;
    font-size: 10px;
}

.module {
    background-color: rgb(255, 255, 255);
    padding: 20px 20px 40px 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
    margin: 20px;
    width: 400px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s;
}

.module:hover {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.336);
}

.module.visible {
    opacity: 1;
    transform: translateY(0);
}

.module h2 {
    font-family: "Kanit";
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    display: flex;
    place-items: center;
    font-size: 24px;
    margin-bottom: 0;
}

.module span {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 15px;

}

.module p {
    text-align: left;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    line-height: 2;
    font-size: 17px;
}