* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main section, main, * body {
  display: flex;
  justify-content: center;
  align-items: center;
}

main section .all_blog .content form .button .bn54 {
  position: relative;
  outline: none;
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  height: 45px;
  width: 130px;
  opacity: 1;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
main section .all_blog .content form .button .bn54 .bn54span {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
}
main section .all_blog .content form .button .bn54:hover {
  animation: bn54rotate 0.7s ease-in-out both;
}
main section .all_blog .content form .button .bn54:hover .bn54span {
  animation: bn54storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}
@keyframes bn54rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes bn54storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

* {
  font-family: "Outfit", sans-serif;
}
* body {
  background-color: #4991d0;
  flex-direction: column;
  transition-duration: 0.5s;
  width: 99%;
}
* body a {
  text-decoration: none;
  color: #0c0c0c;
}
* h1 {
  font-size: 70px;
}
* h2 {
  font-size: 60px;
}
* h3 {
  font-size: 50px;
}
* h4 {
  font-size: 40px;
}
* h5 {
  font-size: 30px;
}
* h6 {
  font-size: 18px;
}
* p {
  font-size: 15px;
}

main {
  flex-direction: column;
}
main .h1_all_blog {
  margin: 50px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
main section {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
main section .all_blog {
  background-color: #c8c4e2;
  max-width: 350px;
  height: 525px;
  border: 1px solid #ececec;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  overflow: hidden;
}
main section .all_blog img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
main section .all_blog .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
main section .all_blog .content h2 {
  font-size: 24px;
}
main section .all_blog .content form .button .bn54 input[type=submit] {
  border: none;
  background-color: #fff;
}/*# sourceMappingURL=all_blog.css.map */