* {
  margin: 0;
  font-family: "Kumbh Sans", sans-serif;
}

.main {
  background-image: url("../images/375Card.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-items: center;
}

.main__contCard {
  display: grid;
  grid-template-rows: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  width: 340px;
  height: 400px;
  background: #fff;
  border-radius: 20px;
  background-image: url("../images/bg-pattern-card.svg"), linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  background-position: top center, bottom center;
  background-size: 100% 42%, 100% 58%;
  background-repeat: no-repeat;
}

.contCardHeader {
  grid-row: 6/10;
  grid-column: 1/13;
  z-index: 10;
  position: relative;
  transform: translateY(-50%);
  justify-content: center;
  align-items: center;
  display: flex;
}
.contCardHeader img {
  height: auto;
  width: auto;
  margin: auto;
  border-radius: 50%;
  border: 5px solid #fff;
}

.contCardBody {
  grid-row: 8/13;
  grid-column: 1/13;
}

.contCardCont {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.contImage {
  position: absolute;
  top: 33%;
  left: calc(50% - 38px);
  z-index: 100;
}
.contImage .imageCard {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  padding: 3px;
}

.contCardContName {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h3 {
  font-weight: 700;
  font-size: 18px;
}
h3 span {
  color: hsl(227, 10%, 46%);
  font-weight: 400;
}

p {
  font-weight: 400;
  text-align: center;
  color: hsl(227, 10%, 46%);
}

.contCardContInfo {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ccc;
  padding: 15px 0px;
}

div h3 {
  font-weight: 700;
  font-size: 18px;
  padding: 5px 0;
}
div h3, div p {
  text-align: center;
}
div p {
  font-weight: 400;
  color: hsl(227, 10%, 46%);
  font-size: 12px;
}

@media screen and (min-width: 375px) and (max-width: 768px) {
  .contImage {
    position: absolute;
    top: calc(100% - 605px);
    left: calc(100% - 420px);
  }
}
@media screen and (min-width: 1024px) {
  .main {
    background-image: url("../images/375CardDesktop.png");
  }
}/*# sourceMappingURL=styles.css.map */