@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Didact+Gothic&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
  scroll-behavior: smooth;
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #9b9b9b;
  border-radius: 5px;
  cursor: pointer;
}
body {
  overflow-x: hidden;
}

::selection {
  background: #66c887;
  color: #fff;
}
.main-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero,
.published {
  width: 70%;
  padding: 180px 0 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #056816;
  line-height: 1.2;
}
.hero p {
  font-size: 1rem;
  font-weight: 400;
  color: #4b4b4b;
  margin-top: 20px;
}

.published {
  padding: 50px 0;
}
.published .issues {
  display: flex;
  gap: 40px;
}
.published .issues .issue {
  width: calc(100% / 3 - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.published .issues .issue p {
  font-size: 1rem;
  font-weight: 600;
  color: #4b4b4b;
  margin-top: 10px;
  font-style: italic;
}
.published .issues .issue img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.published .issues .issue img:hover {
  transform: scale(1.05);
}
.published .buttons {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.published .buttons a:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
.published .buttons .pdf-btn {
  /* padding: 5px 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  height: 40px;
  background: #b7e4c7;
  box-shadow: 0px 12px 22px -3px rgba(0, 0, 0, 0.26);
  color: #757575;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  transition: background 0.3s;
}
.published .buttons .maximize-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  box-shadow: 0px 12px 22px -3px rgba(0, 0, 0, 0.26);
  color: #4b4b4b;
  border: 1px solid #f0f0f0;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50%;
  transition: background 0.3s;
}
.flipbook {
  width: 100%;
  margin-top: 50px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.flipbook iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media only screen and (min-width: 300px) and (max-width: 900px) {
    .main-container {
    width: 100%;
  }
  .published .issues {
    flex-direction: column;
    gap: 30px;
  }
  .published .issues .issue {
    width: 100%;
  }
  .published .issues .issue p {
    font-size: 0.9rem;
  }
  .flipbook {
    width: 100%;
    aspect-ratio: 2 / 3;
    margin-top: 30px;
  }
  .hero,
  .published {
    width: 100%;
    padding: 130px 30px 50px 30px;
  }
}
