@import url('https://fonts.googleapis.com/css2?family=KoHo:wght@200;300;400;500;600;700&display=swap');

.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: none !important;
}

.card .title{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card .title h1{
    font-family: 'KoHo';
    font-weight: 300;
    font-size: 70px;
}

.card .title .divBar4 {
    background-color: #F2CE6B;
    height: 4px;
    width: 600px;
    border-radius: 10px;
    margin-top: 5px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    height: 600px;
    overflow: hidden;
}

.content img {
    width: 400px;
    height: 260px;
    margin: 15px;
}

#read_button {
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-family: 'KoHo';
    font-size: 25px;
    font-weight: 300;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.2s ease-in-out;
}

#read_button:hover{
    background-color: #F2CE6B;
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.card.active .content{
    height: auto;
}
@media screen and (max-width:440px){
    .card .title .divBar4 {
        background-color: #F2CE6B;
        height: 4px;
        width: 382px;
        border-radius: 10px;
        margin-top: 5px;
    }
}