@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 62.5% is like 10px */
  overflow-x: hidden;
}

body {
  font-family: "Source Sans 3", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

p,
a,
span,
i {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.6rem;
  font-family: "Orbitron", sans-serif;
}

h4 {
  font-size: 1.8rem;
  font-family: "Orbitron", sans-serif;
}

h3 {
  font-size: 2rem;
  font-family: "Orbitron", sans-serif;
}

h2 {
  font-size: 2.2rem;
  font-family: "Orbitron", sans-serif;
}

h1 {
  font-size: 2.4rem;
  font-family: "Orbitron", sans-serif;
}

body {
  background-color: #171a1d;
}

.info {
  padding: 6rem auto;
  position: relative;
}
.info h2 {
  color: white;
}

.info::before {
  content: "";
  position: absolute;
  top: -10px; /* Adjust the position of the shadow */
  left: 0;
  width: 100%;
  height: 10px; /* Adjust the size of the shadow */
  background-image: linear-gradient(to right, #212529, #171a1d);
  z-index: 1;
}

.card-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10rem;
}

.heading-section {
  text-align: center;
  color: #000000;
  font-size: 2.4rem !important;
  margin: 3rem 0 6rem 0;
}

.card {
  position: relative;
  width: 30rem;
  height: 40rem;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  gap: 5rem;
  border-radius: 8px;
  cursor: pointer;
  color: white;
}
.card img {
  width: 100%;
  height: 25rem;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -5px;
  margin: auto;
  width: 31rem;
  height: 41rem;
  border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.heading {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  text-align: center;
}

.card:hover::after {
  filter: blur(30px);
}

.card:hover::before {
  transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}/*# sourceMappingURL=info_index.css.map */