@import url("https://fonts.googleapis.com/css2?family=Saira+Stencil+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Reem+Kufi&display=swap");
.header-section {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(73, 0, 0, 0.192);
  -moz-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -o-backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  mix-blend-mode: difference;
}
.header-section hgroup h2 {
  font-size: 2.5rem;
  font-family: "Saira Stencil One", cursive;
  color: rgba(255, 255, 255, 0.664);
  -moz-text-stroke: 0.5px #000000;
  text-stroke: 0.5px #000000;
  -o-text-stroke: 0.5px #000000;
  -webkit-text-stroke: 0.5px #000000;
}

header {
  width: 0%;
  height: 0%;
  position: fixed;
  background-color: #ff002b;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  transform: translate(100%, -100%);
  transition: all 0.7s;
  visibility: hidden;
  z-index: 998;
  top: 0;
  right: 0;
  clip-path: circle(50% at 100% 0);
}
header h1 a {
  font-size: 4rem;
  font-family: "Saira Stencil One", cursive;
  color: #fff;
}
header .panel {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}
header .panel a {
  color: #fff;
  font-size: 1.5rem;
  font-family: "Reem Kufi", sans-serif;
}

.menu {
  visibility: visible;
  transform: translate(0, 0);
  clip-path: circle(142% at 100% 0);
  width: 100%;
  height: 100%;
}

.fa-bars {
  position: fixed;
  top: 15px;
  font-size: 2rem;
  cursor: pointer;
  right: 20px;
  z-index: 998;
  transition: all 0.3s;
}

.fa-times {
  transform: rotate(90deg);
  color: #fff;
}

.loader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  transition: all 0.3s;
  z-index: 999;
  top: 0;
  right: 0;
}
.loader p {
  font-family: "Staatliches", cursive;
  font-size: 2rem;
}
.loader img {
  height: 400px;
}

.loader-charged {
  transform: scale(0);
}

.card-custom-container {
  display: grid;
  margin: 0 auto;
  width: 90%;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: 300px;
  gap: 60px;
}

.pagination-cards {
  padding: 10px 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.pagination-cards a {
  background-color: #f03;
  color: #fff;
  width: 20px;
  height: 20px;
  padding: 9px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.markdown {
  width: 90%;
  display: block;
  margin: 0 auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 900px) {
  .markdown {
    width: 99%;
  }
}
.markdown h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
  font-family: "Staatliches", cursive;
}
@media (max-width: 900px) {
  .markdown h1 {
    font-size: 1.4rem;
  }
}
.markdown img {
  width: 90%;
  height: 450px;
  object-position: center;
  object-fit: cover;
  display: block;
  margin: 2.2rem auto;
}
@media (max-width: 900px) {
  .markdown img {
    background-color: #1111;
    margin: 1rem auto;
    width: 99%;
    object-fit: contain;
    height: 350px;
  }
}
.markdown h3 {
  font-size: 1.2rem;
  font-family: "Staatliches", cursive;
  margin: 1rem 0;
}
.markdown li {
  list-style: decimal;
  width: 90%;
  margin: 0.7rem auto;
  line-height: 120%;
}

a {
  text-decoration: none;
}

main {
  margin-top: 90px;
}

/*# sourceMappingURL=global.css.map */
