:root {
  font-size: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  color: hsl(0, 11%, 12%);
}

section {
  background: hsl(185, 75%, 39%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.card {
  width: 375px;
  border-radius: 20px;
  background: white;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.card-header {
  background-image: url(images/bg-pattern-card.svg);
  background-size: cover;
  height: 150px;
}

.card-body {
  padding: 0 20px 20px;
}

.image-holder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 5px solid white;
  overflow: hidden;
  margin: -55px auto 30px auto;
}

.image-holder img {
  width: 100%;
  height: auto;
  display: block;
}

.name-age {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.age,
.city,
.meta {
  font-weight: 400;
  color: hsl(0, 11%, 12%);
  opacity: 0.5;
}

.age {
  margin-left: 6px;
}

.city {
  font-size: 0.9rem;
}

.card-footer {
  border-top: 1px solid hsl(0, 0%, 86%);
  display: flex;
  padding: 0 25px;
}

.card-footer .item {
  flex: 1;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-footer .item .value {
  font-size: 1rem;
  margin-bottom: 6px;
}

.card-footer .item .meta {
  font-size: 0.6rem;
  letter-spacing: 1px;
}

/* Circles */
.circles .c1,
.circles .c2 {
  position: absolute;
  width: 800px;
  height: auto;
}

.circles .c1 {
  top: -300px;
  left: -175px;
}

.circles .c2 {
  bottom: -300px;
  right: -175px;
}

.attribution {
  position: absolute;
  bottom: 0;
  background: white;
  margin-bottom: 20px;
  padding: 10px;
}

/* Media Queries */
@media (max-width: 768px) {
    .circles .c1,
.circles .c2 {
  position: absolute;
  width: 500px;
  height: auto;
}
