body {
  background: #00091b;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1 {
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 1;
  font-size: 60px;
  margin-bottom: 0;
  font-weight: 700;
}

p {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: normal;
}

.container {
  margin: auto;
  text-align: center;
  width: 90%;
  max-width: 1200px;
  animation: fadeIn 1000ms ease;
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

.dot {
  color: #ff2e9a;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.card {
  background: #0b1238;
  border-radius: 15px;
  padding: 20px;
  width: 200px; /* Adjusted card width */
  box-shadow: 0 0 15px -5px #ff2e9a;
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
  color: #fff;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px 0px #ff2e9a;
}

.card h2 {
  font-size: 20px; /* Adjusted font size */
  margin-bottom: 10px;
}

.card p {
  font-size: 14px; /* Adjusted font size */
}

.card i {
  font-size: 40px; /* Adjusted icon size */
  margin-top: 10px;
}

.icons {
  text-align: center;
  margin-top: 20px;
}

.icons i {
  color: #00091b;
  background: #fff;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover,
.icons i:active {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  text-decoration: none;
}

.footer {
  text-align: center;
  margin-top: auto;
  padding-bottom: 40px; /* Add some padding to move it up slightly */
}

.footer hr {
  border: 1px solid #ff2e9a;
  width: 80%;
  margin: 0 auto;
}

.footer p {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  margin-top: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.explore-projects {
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
  }
}

/* Buy me a coffee */

.bmc-button {
  display: inline-block;
  background-color: #ff2e9a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.bmc-button:hover {
  background-color: #ff4fa7;
  box-shadow: 0px 0px 15px #ff2e9a;
}

.bmc-button i {
  margin-right: 8px;
}
