body {
  margin: 0;
}

article {
  padding: 20px 30px;
}

article a {
  color: darkorange;
}

.blog-list-head h1 {
  margin: 0;
  font-size: 5rem;
  color: darkorange;
}

.post-list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post-list p {
  font-size: 1.3rem;
}

.post-list .info {
  font-size: 1.15rem;
  color: rgba(104, 104, 104, 0.8);
}

.post-list h3 {
  color: darkorange;
  font-size: 2rem;
}

.post-list li {
  width: 300px;
  height: 550px;
  overflow: hidden;
  padding: 20px;
  margin: 20px;
  -webkit-box-shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
          box-shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  -webkit-animation-name: slideUp;
          animation-name: slideUp;
  transition: all 350ms ease;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
}

.post-list li:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 5px 10px rgba(104, 104, 104, 0.8);
          box-shadow: 0 5px 10px rgba(104, 104, 104, 0.8);
}

.post-list li img {
  width: 100%;
}

.category {
  padding: 20px 10px;
}

.category h3 {
  font-size: 1.6rem;
}

.category ul {
  list-style: none;
  padding: 0;
  font-size: 1.4rem;
}

.category ul li .badge {
  background-color: darkorange;
  padding: 4px;
  color: white;
  border-radius: 3px;
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0.1;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0.1;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*# sourceMappingURL=blog-list.css.map */