#Publications{
	width: 1200px;
	min-height: 200px;
	margin: auto;
}
/* Style for the Publications section */
#Publications {
  display: flex; /* Make the publications appear in a row */
  justify-content: space-between; /* Distribute the publications evenly along the row */
  flex-wrap: wrap; /* Wrap the publications to the next line when the container width is smaller */
}

/* Style for each individual publication */
.Publications {
  width: 280px; /* Adjust the width of each publication, leaving a small gap between them */
  height: 350px;
  margin-bottom: 20px; /* Add some space at the bottom of each publication */
  text-align: center; /* Center the content horizontally */
  position: relative;
  border-radius: 10px;
  border: 3px solid #d8dbe2;
}

.Publications a {
  display: block; /* Make the whole area clickable */
  text-decoration: none; /* Remove underlines from the link */
  color: #333; /* Set the text color */
}

.Publications_image {
  width: 100%; /* Make the image fill the entire container */
  height: 100%; /* Set the height of the image container */
  background-size: cover; /* Scale the image to cover the entire container */
  background-position: center; /* Center the background image */
  margin-bottom: 10px; /* Add some space between the image and the text */
   border-radius: 7px;
}

h3 {
  font-size: 20px; /* Set the font size for the heading */
  margin: 0; /* Remove default margins from the heading */
  position: absolute;
  width: 82%;
  background-color: #fff;
  color: red;
  bottom: 13px;
  margin-left: 5%;
  padding: 10px;
  border-radius: 30px;
  color: #000000;
  font-size: 15px;
}
@media only screen and (max-width:1220px) {

#Publications{
	width: 900px;
}

}
@media only screen and (max-width:920px) {

#Publications{
	width: 620px;
}

}
@media only screen and (max-width:640px) {

#Publications{
	width: 290px;
}

}
