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

.container {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.container .card {
  position: relative;
  display: flex;
  width: 330px;
  height: 500px;
  min-width: 330px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f3f3f3;
  margin: 0 20px;
  box-shadow: 30px 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: -30px -20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.01);
  border-radius: 15px;
  margin: 50px 20px;
}
.container .card .card-body {
  position: absolute;
  display: flex;
  width: 90%;
  height: 90%;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: -10px -20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}
.container .card .card-body:hover {
  background: linear-gradient(30deg, #ba6ceb, #5538d5);
  border: none;
  transform: translateY(-50px);
}
.container .card .card-body:hover .content h2 {
  color: #fff;
}
.container .card .card-body:hover .content p {
  color: #fff;
}
.container .card .card-body:hover .content .boxBtn {
  background-color: #ff6c91;
}
.container .card .card-body .content {
  padding: 15px;
}
.container .card .card-body .content h2 {
  font-size: 28px;
  color: #555;
  transition: 0.1s;
}
.container .card .card-body .content p {
  color: #333;
  transition: 0.1s;
}
.container .card .card-body .content .boxBtn {
  position: relative;
  display: block;
  margin-top: 20px;
  width: 130px;
  height: 45px;
  background-color: #009dfb;
  border-radius: 25px;
  left: 25%;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.1);
}
.container .card .card-body .content .boxBtn .btn {
  position: absolute;
  color: #fff;
  text-decoration: none;
  left: 0;
  top: 20%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.one::before {
  content: "01";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 150px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  letter-spacing: 10px;
}

.two::before {
  content: "02";
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 150px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  letter-spacing: 10px;
}

.three::before {
  content: "03";
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 150px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  letter-spacing: 10px;
}/*# sourceMappingURL=styles.css.map */