@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@500&family=Martel&family=Piazzolla:opsz,wght@8..30,300;8..30,400;8..30,900&family=Poppins:wght@500&family=Roboto&family=Tiro+Devanagari+Sanskrit&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  /* 1 rem = 10px, setting a base font size of 10px */
}

body {
  margin: 0;
  overflow-x: hidden;
}

h2 {
  font-family: "Poppins", sans-serif;
  color: #003366;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  border-bottom: 0.2rem solid #003366;
  /* Add an underline effect */
  padding-bottom: 0.5rem;
  line-height: 1.2;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.2);
}

.info {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  padding: 4rem;
  border: 0.3rem solid blue;
  border-radius: 2rem;
  box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.45),
    25px 0 20px -20px rgba(0, 0, 0, 0.45),
    0px 25px 20px -20px rgba(0, 0, 0, 0.45),
    -25px 0 20px -20px rgba(0, 0, 0, 0.45);
  margin-bottom: 10rem;
  margin-top: 8rem;
  margin-left: 3rem;
  margin-right: 3rem;
}

#launch {
  width: 100rem;
  margin-top: 10rem;
  margin-left: 18rem;
  margin-bottom: 10rem;
  border: 0.2rem solid rgb(138, 137, 137);
  border-radius: 2rem;
  box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.5);
  transition: box-shadow 0.3s ease-in-out;
}

#launch:hover {
  box-shadow: 0px 9px 40px rgba(255, 149, 5, 1);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  /* Allow flex items to wrap to the next line */
  justify-content: space-around;
  /* Adjust as needed */
}

.card {
  color: black;
  border: 0.2rem solid #ccc;
  border-radius: 2rem;
  margin: 4rem;
  padding: 1.5rem;
  text-align: center;
  max-width: 30rem;
  max-height: 60rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  background: linear-gradient(135deg, #ff8c00, #ffffff, #138808);
  transition: transform 0.3s ease-in-out;
}

.card h3 {
  font-weight: 600;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  color: #000;
}

.card img {
  max-width: 30rem;
  max-height: 30rem;
  object-fit: contain;
  width: auto;
  height: auto;
  border-radius: 0.8rem;
  margin: 1rem;
  overflow: hidden;
  justify-content: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.45) inset;
  background-color: white;
}

.card p {
  font-weight: 300;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  color: black;
}

.card:hover {
  transform: scale(1.1);
}