@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Lobster&family=Platypi:ital,wght@0,300..800;1,300..800&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&display=swap");
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #322b29, #d1b9b0);
  color: #fff;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  /* height: 100vh; */
  margin: 0;
}
.con {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.content span {
  text-align: center;
}

.box {
  background: #16213e;
  /* backdrop-filter: blur(10px); */
  border-radius: 15px;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

p {
  font-size: 18px;
  font-weight: bold;
}

h1 {
  font-size: 36px;
  margin: 10px 0;
}

i {
  font-size: 20px;
  color: #ffd700;
}

span i {
  margin: 0 3px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  padding: 20px;
}

.card {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 10px;
  color: #333;
}

.card p {
  color: #666;
}
