:root {
  --darkCyan: #19a2ae;
  --veryDarkBlue: #2d3248;
  --darkGrayishBlue: #6a6f81;
  --darkGray: #969696;
}
//font-family: 'Kumbh Sans', sans-serif;

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-family: "Kumbh Sans", sans-serif;
}
body {
  background-color: var(--darkCyan);
  background-image: url("images/bg-pattern-top.svg"),
    url("images/bg-pattern-bottom.svg");
  background-position: bottom 13vh right 53vw, top 34vh left 50vw;
  background-repeat: no-repeat;
}

.half {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-image: url("images/bg-pattern-card.svg");
  height: 160px;
}

div.card {
  max-width: 374px;
  max-height: 400px;
  margin: 220px auto 53px;
  width: 90%;
}
.card {
  background-color: #fff;
  text-align: center;
  border-radius: 16px;
  box-shadow: 19px 16px 55px #2b2b2b78;
}

.lowerHalf {
  border-bottom: 1px solid var(--darkGray);
  position: relative;
  top: -51px;
}
.age {
  color: var(--darkGray);
  font-weight: normal;
}
span {
  font-size: 18px;
  font-weight: bold;
}
.lowerHalf h2 {
  font-size: 1rem;
}
h2 + p {
  margin: 13px auto 20px;
}
p {
  font-size: 14px;
  color: var(--darkGray);
}
.box > p {
  font-size: 11px;
  letter-spacing: 1.5px;
}
img {
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
}
.littleBoxes {
  display: flex;
  justify-content: space-around;
  position: relative;
  top: -20px;
}
a {
  color: #fff;
}
@media screen and (min-width: 480px) {
  body {
  }
  #container {
    width: 90%;
    width: auto;
  }
}
