@import url("reset.css");
@import url("style.css");
@import url("navigation.css");
@import url("footer.css");
h2 {
  padding-top: 20px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  margin-top: 40px;
  background-color: #ddd;
}

/*articles*/
.articleDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 90%;
  overflow: auto;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 10px;
}
.articleDiv a {
  display: block;
  color: #000;
  width: 25%;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 2.5%;
  margin: 20px;
}
.articleDiv a:hover {
  opacity: 0.8;
}
.articleDiv .article {
  position: relative;
}
.articleDiv .article img {
  display: block;
  width: 100%;
}
.articleDiv .article img.available {
  position: absolute;
  top: 50px;
  display: block;
  width: 20%;
}
.articleDiv .article h4 {
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 18px;
}
.articleDiv .article p {
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 14px;
}/*# sourceMappingURL=allarticles.css.map */