* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Vazir, sans-serif;
  direction: rtl;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #161623;
  font-family: "Oswald", sans-serif;
}

body::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(#f00, #f0f);
  -webkit-clip-path: circle(30% at right 70%);
          clip-path: circle(30% at right 70%);
}

body::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(#2196f3, #e91e63);
  -webkit-clip-path: circle(20% at 10% 10%);
          clip-path: circle(20% at 10% 10%);
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap: wrap;
  z-index: 99;
  transform-style: preserve-3d;
  perspective: 800px;
}
.container .card {
  position: relative;
  width: 340px;
  height: 450px;
  margin: 30px;
  box-shadow: 2px 6px 5px #4E342E;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  transform-style: preserve-3d;
  perspective: 800px;
}
.container .card:hover .content {
  transform: translateY(0px) perspective(800px);
  opacity: 1;
}
.container .card .content {
  width: 340px;
  height: 450px;
  padding: 20px;
  text-align: center;
  opacity: 1;
  transition: 0.5s;
  position: relative;
  background-color: rgba(225, 245, 254, 0.7960784314);
}
.container .card .content h3 {
  font-family: Vazir, sans-serif;
  font-size: 1rem;
  z-index: 1;
  transform: translateZ(30px);
  transition: 0.4s;
  margin-bottom: 10px;
  color: #000000;
}
.container .card .content p {
  font-family: Vazir, sans-serif;
  font-size: 0.9rem;
  color: rgb(29, 28, 28);
  font-weight: 300;
  transform: translateZ(50px) !important;
  line-height: 1.7;
  font-weight: bold;
  text-align: justify;
}
.container .card .content a, .container .card .content .pj1 {
  width: 300px;
  height: auto;
  font-family: Vazir, sans-serif;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: #90CAF9;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
}
.container .card .content .tell {
  font-family: Vazir, sans-serif;
  position: relative;
  padding: 8px 20px;
  margin-top: 15px;
  background: #90CAF9;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=master.css.map */