@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #171717;
  min-height: 80vh;
}
.page-back{

  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.language-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  }
.language-toggle:hover {
  background-color: #f2709c;
  }
  .page-back:hover{ 
  background-color: #f2709c;
  }
img {
  max-width: 90%;
  display: block;
}

ul {
  list-style-type: none;
}
ul i {
  color: #fff;
  font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem);
}
ul i:hover {
  color: #f2709c;
}

section {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-block: min(20vh, 6rem);
  text-align: center;
  width: min(80rem, 80%);
  margin-inline: auto;
}
section span,
section p,
section h2,
section h3 {
  letter-spacing: 0.035rem;
}
section p {
  line-height: 1.6;
  color: #a3a3a3;
  max-width: 50rem;
  margin: 0 auto;
  font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem);
}
section .bg-watermark {
  color: #1f1f1f;
  font-size: clamp(6rem, 1.3333rem + 14.9333vw, 20rem);
  font-weight: 800;
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translatex(-50%) translatey(-15%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  letter-spacing: 0.5rem;
}
section span {
  text-transform: uppercase;
  display: block;
  font-size: 1.2rem;
  color: #a3a3a3;
}
section h2 {
  font-size: clamp(3.5rem, 3rem + 1.6vw, 5rem);
  margin-top: -0.625rem;
  color: #fff;
}
section .cards {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(12rem, 80%), 1fr));
  gap: 2rem;
}
@media screen and (min-width: 51rem) {
  @tailwind base;
  @tailwind components;
  @tailwind utilities;
}
section .cards .card {
  position: relative;
  cursor: pointer;
}
section .cards .card h3,
section .cards .card p {
  text-transform: capitalize;
}
section .cards .card h3 {
  font-size: clamp(1rem, 0.9167rem + 0.2667vw, 1.25rem);
  font-weight: 400;
  color: #f6f6f6;
}
section .cards .card p {
  font-size: clamp(0.85rem, 0.75rem + 0.32vw, 1.15rem);
  letter-spacing: 0.12rem;
  font-weight: 300;
  max-width: 100%;
}
section .cards .card::before {
  position: absolute;
  content: "";
  width: 5rem;
  height: 6.25rem;
  z-index: 0;
  transition: 0.3s ease-in-out;
  background: #f2709c;
  background: linear-gradient(to left, #f2709c, #f2709c);
  top: -0.375rem;
  left: -0.375rem;
  right: -0.375rem;
}
section .cards .card::after {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #232526;
  background: linear-gradient(to bottom, hsla(210, 2.99%, 26.27%, 0.2), hsla(0, 0%, 3.14%, 0.9));
}
section .cards .card img {
  filter: grayscale(100%);
  transition: 0.5s ease;
}
section .cards .card-content {
  position: absolute;
  bottom: 0;
  z-index: 99;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 0.001rem 1.25rem;
  text-align: center;
}
section .cards .card-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
section .cards .card:hover img {
  filter: grayscale(0%);
}
section .cards .card:hover::before {
  transform: scale(1.03);
}
section .cards .card:nth-child(1)::before {
  top: -0.375rem;
  left: -0.375rem;
}
@media screen and (min-width: 31.25rem) {
  section .cards .card:nth-child(2) {
    transform: translatey(15%);
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
  }
}
section .cards .card:nth-child(2)::before {
  bottom: -0.375rem;
  left: -0.375rem;
  top: auto;
}
section .cards .card:nth-child(3)::before {
  top: -0.375rem;
  left: -0.375rem;
}
@media screen and (min-width: 31.25rem) {
  section .cards .card:nth-child(4) {
    transform: translatey(15%);
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
  }
}
section .cards .card:nth-child(4)::before {
  bottom: -0.375rem;
  right: -0.375rem;
  top: auto;
}
section .card-content svg {
  color: #f6f6f6;
  width: 16px;
  height: 16px;
  fill: white;
  transition: fill 0.3s ease;
}
section .card-content a:hover svg {
  color: #f2709c;
  fill: #f2709c; /* or any color you prefer */
}
section .card-content svg {
  color: #fff;
  width: 16px;
  height: 16px;
  fill: white;
  transition: fill 0.3s ease;
}
section .card-content a:hover svg {
  color: #f2709c;
  fill: #f2709c; /* GitHub's brand color */
}/*# sourceMappingURL=style.css.map */