*{
    margin: 0;
    padding: 0;
}
.archana-main{
    height: auto;
    /* border:2px solid red ; */
    padding: 20px 30px;
}
.archana-main .main-card{
    display: flex;
    align-items: center;
    /* border: 2px solid green; */
    height: auto;
    justify-content: center;
}
.archana-main .main-card .article{
    width: 20vw;
    height: 45vh;
    /* border: 2px solid blue; */
    position: relative;
    overflow: hidden;
    margin: 0px 20px;
}
.archana-main .main-card .article img{
    width: 100%;
    height: 100%;
    border-radius: 10px 10px;
    object-fit: cover;
}
.archana-main .main-card .article .text{
    height: 60%;
    background-color: rgb(233, 231, 231);
    position: absolute;
    right: 0;
    left: 0;
    border-radius: 20px;
    bottom: -9rem;
    padding:20px 20px;
    transition: 8s all ease;
    display: none;
    transition-delay: 5s;
    box-shadow: 2px 2px 1px 1px gray;
}
.archana-main .main-card .article .text .text-description{
    display: block;
    font-weight: bold;
    text-align: center;
    font-size: 2vmax;
}
.archana-main .main-card .article .text button{
    text-decoration: none;
    font-size: 1.5vmax;
    width: 10vw;
    height: 5vh;
    margin: 10px 45px;
    border: none;
    background-color: none;
    border: 1px solid rgb(8, 187, 187);

}
.archana-main .main-card .article .text button:hover{
    text-decoration: underline;
}
.archana-main .main-card .article:hover .text{
    display: block;
    /* transform: scale(2); */
}
.archana-main .main-card1{
    display: flex;
    align-items: center;
    /* border: 2px solid green; */
    height: auto;
    justify-content: center;
    margin: 20px 0px;
}
.archana-main .main-card1 .article{
    width: 20vw;
    height: 45vh;
    /* border: 2px solid blue; */
    position: relative;
    overflow: hidden;
    margin: 0px 20px;
}
.archana-main .main-card1 .article img{
    width: 100%;
    height: 100%;
    border-radius: 10px 10px;
    object-fit: cover;
}
.archana-main .main-card1 .article .text{
    height: 60%;
    background-color: rgb(233, 231, 231);
    position: absolute;
    right: 0;
    left: 0;
    border-radius: 20px;
    bottom: -9rem;
    padding:20px 20px;
    transition: 8s all ease;
    display: none;
    transition-delay: 5s;
}
.archana-main .main-card1 .article .text .text-description{
    display: block;
    font-weight: bold;
    text-align: center;
    font-size: 2vmax;
}
.archana-main .main-card1 .article .text button{
    text-decoration: none;
    font-size: 1.5vmax;
    width: 10vw;
    height: 5vh;
    margin: 10px 45px;
    border: none;
    background-color: none;
    border: 1px solid rgb(8, 187, 187);

}
.archana-main .main-card1 .article .text button:hover{
    text-decoration: underline;
}

.archana-main .main-card1 .article:hover .text{
    display: block;
}