.article-body{
    background-color: white;
    color: black;
    padding: 100px 150px 40px 150px;
}

.article-head{
    padding-top: 150px;
    padding-bottom: 0px;
    text-align: center;
    background-color: white;
    color: black;
}
body{
    background-color: white;
    color: black;
}
.footer{
    background: var(--background-color) ;
}

p, ul{
    font-size: 18px;
}

.img-fluid{
    margin-bottom: 40px;
}

.article-container{
    display: flex;
    flex-wrap: wrap;
    padding-top: 80px;
    padding-bottom: 80px;
}

.article-card{
    width: 30%;
    display: flex;
    flex-direction: column;
    border: 2px solid #9ca3af;
    margin: 15px;
        background-color: #202020;


}
.article-card:hover{
      border: 2px solid #0DCCD7;
    box-shadow: 0 0 15px 4px rgba(13, 204, 215, 0.4);
}
.card-content{
    height: 100%;
    padding: 25px 25px 10px 25px;
    background-color: #202020;
    color: white;
  display: flex;
  flex-direction: column;
}
.article-card-image{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.card-text{
    font-size: 15px;
    color: rgb(235, 231, 231);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; 
    overflow: hidden;
    text-overflow: ellipsis;
   
}
.read-more{
    text-decoration: none;
    color: #0DCCD7;
  margin-top: auto
}
.read-more:hover{
    font-weight: 500;
}
.read-more:active{
    font-weight: 500;
}
.title{
    color: white;
    text-decoration: none;
}

