p {
    text-indent: 30px;
    font-size: 20px;
    }
body {
    font-family: Georgia, serif;
    }
img {
    object-fit: cover;
    margin: auto;
    display: block;

    }
.responsive {
   max-width: 100%;
   max-height: 100%;
}
h1{
    text-align: center;
    color : #2e4053;
    }
/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
    }
/* Left and right column */
.column.side {
    width: 15%;
    }
/* Middle column */
.column.middle {
    width: 70%;
    }
.footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    }
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    }
.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.article-card {
  width: 250px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.article-card h3 {
  margin: 15px;
  font-size: 1.1em;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
